結果

問題 No.500 階乗電卓
ユーザー NoneNone
提出日時 2021-05-05 02:35:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 131 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-07-23 21:56:02
合計ジャッジ時間 2,105 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,668 KB
testcase_01 AC 39 ms
52,812 KB
testcase_02 AC 39 ms
52,124 KB
testcase_03 AC 38 ms
52,560 KB
testcase_04 AC 39 ms
53,688 KB
testcase_05 AC 39 ms
52,144 KB
testcase_06 AC 38 ms
53,252 KB
testcase_07 AC 39 ms
53,364 KB
testcase_08 AC 39 ms
52,548 KB
testcase_09 AC 39 ms
53,356 KB
testcase_10 AC 37 ms
52,736 KB
testcase_11 AC 39 ms
52,528 KB
testcase_12 AC 38 ms
52,052 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
52,088 KB
testcase_16 AC 38 ms
52,908 KB
testcase_17 AC 39 ms
52,388 KB
testcase_18 AC 38 ms
51,696 KB
testcase_19 AC 38 ms
52,008 KB
testcase_20 AC 39 ms
52,556 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 39 ms
52,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
f=1
for i in range(1,N+1):
    f*=i
    f%=10**12
    if f==0:
        print("000000000000")
        exit()
print(f)
0