結果

問題 No.500 階乗電卓
ユーザー minrminr
提出日時 2020-03-18 09:22:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 361 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,512 KB
最終ジャッジ日時 2024-12-14 01:27:47
合計ジャッジ時間 31,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 29 ms
17,568 KB
testcase_05 AC 30 ms
21,632 KB
testcase_06 AC 29 ms
17,700 KB
testcase_07 AC 29 ms
17,568 KB
testcase_08 AC 30 ms
17,696 KB
testcase_09 AC 31 ms
21,632 KB
testcase_10 AC 31 ms
17,572 KB
testcase_11 AC 31 ms
21,632 KB
testcase_12 AC 30 ms
17,696 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 30 ms
10,752 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorial(num):
    if num == 1:
        return 1
    else:
        return num * factorial(num-1)
                    
N = int(input())
ans = 1
if N <= 14:
    ans = factorial(N)
elif N >= 15:
    for i in range(2,N+1):
        ans *= i
        if ans >= 10**12:
            s = list(str(ans)[-12:len(str(ans))])
            ans = int(''.join(s))
print(ans)
0