Python2求助

P1591 阶乘数码

Regon @ 2022-05-26 10:23:39

import math
n=int(raw_input())
while n>0:
    s=raw_input()
    l=s.split(" ")
    r=math.factorial(int(l[0]))
    print str(r).count(l[1])
    n-=1

过不了,应该是什么地方没有注意到。


by Regon @ 2022-05-26 11:20:27

import math
n=int(raw_input())
while n>0:
    s=raw_input()
    l=s.split()
    r=math.factorial(int(l[0]))
    print str(r).count(l[1])
    n=n-1

可过,关贴。


|