結果

問題 No.500 階乗電卓
ユーザー akitsugu777akitsugu777
提出日時 2018-11-15 17:28:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 202 bytes
コンパイル時間 533 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 24,708 KB
最終ジャッジ日時 2024-12-24 14:00:35
合計ジャッジ時間 32,513 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 32 ms
15,616 KB
testcase_05 AC 33 ms
17,316 KB
testcase_06 AC 33 ms
15,744 KB
testcase_07 AC 35 ms
21,432 KB
testcase_08 AC 36 ms
15,744 KB
testcase_09 AC 34 ms
21,300 KB
testcase_10 AC 35 ms
15,616 KB
testcase_11 AC 33 ms
21,304 KB
testcase_12 AC 32 ms
17,316 KB
testcase_13 AC 32 ms
10,368 KB
testcase_14 AC 33 ms
10,496 KB
testcase_15 AC 35 ms
10,368 KB
testcase_16 AC 35 ms
10,368 KB
testcase_17 AC 33 ms
10,368 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

x = 1
for i in range(1, n+1):
    x *= i

if n <= 14:
    print(x)
else:
    l = []
    x = list(str(x))
    for i in range(1, 13):
        l.append(x[-i])
    print(''.join(l[::-1]))
0