結果

問題 No.500 階乗電卓
ユーザー rlangevin
提出日時 2023-01-03 22:22:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-11-27 02:25:30
合計ジャッジ時間 2,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N >= 50:
    print("0"*12)
    exit()
mod = 10 ** 12
cnt = 0
ans = 1
for i in range(1, N + 1):
    ans *= i
    ans %= mod
print(ans)
0