結果

問題 No.500 階乗電卓
ユーザー rocoderrocoder
提出日時 2017-08-12 14:22:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 356 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-21 06:14:56
合計ジャッジ時間 1,582 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 RE -
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 26 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#step
N=int(input())
u=0
if N>=60:
    print("000000000000")
else:
    S=1
    for i in range(1,N+1):
        S*=i
        if S>999999999999:
            S=str(S)
            S=S[-12:]
            S=int(S)
            u=1
        if u==1 and S<1000000000000:
            S=str(S)
            for i in range (12-len(S)):
                S="0"+S
    print(S)
0