結果

問題 No.500 階乗電卓
ユーザー KeroruKeroru
提出日時 2020-05-01 01:03:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 1,398 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 53,416 KB
最終ジャッジ日時 2024-12-21 08:04:13
合計ジャッジ時間 2,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,436 KB
testcase_01 AC 48 ms
53,024 KB
testcase_02 AC 47 ms
51,924 KB
testcase_03 AC 46 ms
51,696 KB
testcase_04 AC 45 ms
51,548 KB
testcase_05 AC 46 ms
52,148 KB
testcase_06 AC 45 ms
51,628 KB
testcase_07 AC 44 ms
52,728 KB
testcase_08 AC 46 ms
51,940 KB
testcase_09 AC 48 ms
52,948 KB
testcase_10 AC 47 ms
52,144 KB
testcase_11 AC 47 ms
52,112 KB
testcase_12 AC 47 ms
53,112 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 43 ms
52,000 KB
testcase_16 AC 43 ms
51,676 KB
testcase_17 AC 45 ms
52,264 KB
testcase_18 AC 46 ms
52,920 KB
testcase_19 AC 47 ms
52,836 KB
testcase_20 AC 47 ms
52,404 KB
testcase_21 AC 45 ms
53,416 KB
testcase_22 AC 48 ms
52,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=1
for i in range(1,n+1):
    ans*=i
    ans%=10**12
    if ans==0:
        ans='0'*12
        break
print(ans)
0