結果

問題 No.500 階乗電卓
ユーザー c-yanc-yan
提出日時 2020-11-27 00:50:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 570 ms
コンパイル使用メモリ 10,532 KB
実行使用メモリ 8,700 KB
最終ジャッジ日時 2023-10-01 03:40:19
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
8,484 KB
testcase_01 AC 19 ms
8,688 KB
testcase_02 AC 20 ms
8,508 KB
testcase_03 AC 19 ms
8,508 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 20 ms
8,424 KB
testcase_17 AC 18 ms
8,588 KB
testcase_18 AC 19 ms
8,520 KB
testcase_19 AC 19 ms
8,592 KB
testcase_20 AC 19 ms
8,516 KB
testcase_21 AC 19 ms
8,668 KB
testcase_22 AC 18 ms
8,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce

N = int(input())

if N >= 50:
    print('0' * 12)
else:
    print(str(reduce(lambda x, y: x * y, range(1, N)))[-12:])
0