Update solution for 숫자의_개수 w/ id 6684572
Time: 64ms MemUsage: 29160KB
This commit is contained in:
6
baekjoon/숫자의_개수/solution_6684572.py
Normal file
6
baekjoon/숫자의_개수/solution_6684572.py
Normal file
@@ -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)))
|
||||
Reference in New Issue
Block a user