-Code
from math import factorial
for _ in range(int(input())):
a, b = map(int, input().split())
print(str(factorial(a)).count(str(b)))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 22061번 Покупка велосипеда (0) | 2024.10.19 |
---|---|
[백준/파이썬] 5362번 Garbled Message (0) | 2024.10.18 |
[백준/파이썬] 4974번 ICPC Score Totalizer Software (0) | 2024.10.16 |
[백준/파이썬] 24348번 ИЗРАЗ (0) | 2024.10.15 |
[백준/파이썬] 14729번 칠무해 (0) | 2024.10.14 |