結果

問題 No.500 階乗電卓
ユーザー nohakai3nohakai3
提出日時 2022-11-02 10:29:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 59,152 KB
最終ジャッジ日時 2024-07-16 17:44:37
合計ジャッジ時間 2,354 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,556 KB
testcase_01 AC 35 ms
53,368 KB
testcase_02 AC 33 ms
52,948 KB
testcase_03 AC 36 ms
53,152 KB
testcase_04 AC 34 ms
51,944 KB
testcase_05 AC 33 ms
52,372 KB
testcase_06 AC 58 ms
58,392 KB
testcase_07 AC 38 ms
53,276 KB
testcase_08 AC 37 ms
52,192 KB
testcase_09 AC 37 ms
53,812 KB
testcase_10 AC 36 ms
53,000 KB
testcase_11 AC 37 ms
57,924 KB
testcase_12 AC 39 ms
57,672 KB
testcase_13 AC 39 ms
57,388 KB
testcase_14 AC 39 ms
58,748 KB
testcase_15 AC 41 ms
59,152 KB
testcase_16 AC 38 ms
57,716 KB
testcase_17 AC 39 ms
57,776 KB
testcase_18 AC 35 ms
52,952 KB
testcase_19 AC 36 ms
53,568 KB
testcase_20 AC 34 ms
53,436 KB
testcase_21 AC 36 ms
52,660 KB
testcase_22 AC 35 ms
52,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial

n=int(input())
if n<=100:
    ans=[]
    for i in range(min(len(str(factorial(n))),12)):
        k=str(factorial(n))
        ans.append(k[-(i+1)])
    ans=ans[::-1]
    ans="".join(ans)
    print(ans)

if n>100:
    print("0"*12)
0