結果

問題 No.500 階乗電卓
ユーザー tamatotamato
提出日時 2020-04-04 20:47:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,676 KB
実行使用メモリ 53,840 KB
最終ジャッジ日時 2024-07-03 07:44:10
合計ジャッジ時間 1,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,760 KB
testcase_01 AC 35 ms
53,560 KB
testcase_02 AC 35 ms
52,424 KB
testcase_03 AC 35 ms
52,688 KB
testcase_04 AC 34 ms
53,072 KB
testcase_05 AC 33 ms
51,944 KB
testcase_06 AC 34 ms
51,756 KB
testcase_07 AC 34 ms
53,840 KB
testcase_08 AC 35 ms
52,072 KB
testcase_09 AC 35 ms
52,072 KB
testcase_10 AC 34 ms
52,148 KB
testcase_11 AC 33 ms
52,412 KB
testcase_12 AC 34 ms
53,088 KB
testcase_13 AC 34 ms
52,572 KB
testcase_14 AC 37 ms
53,492 KB
testcase_15 AC 37 ms
51,816 KB
testcase_16 AC 34 ms
52,124 KB
testcase_17 AC 35 ms
53,168 KB
testcase_18 AC 35 ms
52,768 KB
testcase_19 AC 36 ms
52,524 KB
testcase_20 AC 36 ms
52,360 KB
testcase_21 AC 35 ms
52,888 KB
testcase_22 AC 35 ms
52,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    mod = 10**12
    ans = 1
    N = int(input())
    flg = 0
    for i in range(1, N+1):
        ans = ans * i
        if ans >= mod:
            flg = 1
            ans %= mod
        if ans == 0:
            print('0' * 12)
            exit()
    if flg:
        print(str(ans).zfill(12))
    else:
        print(ans)


if __name__ == '__main__':
    main()
0