#21934: TLE


smith990547@gmail.com (吳冠辰)

學校 : 國立臺東大學
編號 : 109519
來源 : [140.127.41.251]
最後登入時間 :
2024-03-28 13:53:32
b897. 10219 - Find the ways ! -- UVa 10219 | From: [180.217.71.88] | 發表日期 : 2020-07-31 16:25

如何優化??

import math

try:

    while True:

        a,b=map(int,input().split())

        f_a = math.factorial(a)

        f_b = math.factorial(b)

        f_c = math.factorial(a-b)

        ans = f_a // (f_b * f_c)

        ans1 = str(ans)

        print(len(ans1))

except EOFError:

    pass

 
ZeroJudge Forum