From 2a737cca28de7eef167b4426d9b1985331a00a3b Mon Sep 17 00:00:00 2001 From: Myeongseon Choi Date: Thu, 29 Aug 2024 16:24:12 +0900 Subject: [PATCH] =?UTF-8?q?Update=20solution=20for=20=EC=88=AB=EC=9E=90?= =?UTF-8?q?=EC=9D=98=5F=EA=B0=9C=EC=88=98=20w/=20id=206684572=20Time:=2064?= =?UTF-8?q?ms=20MemUsage:=2029160KB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- baekjoon/숫자의_개수/solution_6684572.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 baekjoon/숫자의_개수/solution_6684572.py diff --git a/baekjoon/숫자의_개수/solution_6684572.py b/baekjoon/숫자의_개수/solution_6684572.py new file mode 100644 index 0000000..66a4105 --- /dev/null +++ b/baekjoon/숫자의_개수/solution_6684572.py @@ -0,0 +1,6 @@ +N =1 +for i in range(3) : + N *= int(input()) +N = str(N) +for i in range(10) : + print(N.count('{}'.format(i))) \ No newline at end of file