Update solution for 숫자의_개수 w/ id 6684572

Time: 64ms
MemUsage: 29160KB
This commit is contained in:
2024-08-29 16:24:12 +09:00
parent 2b68b03279
commit 2a737cca28

View 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)))