結果

問題 No.500 階乗電卓
ユーザー kk
提出日時 2020-08-14 13:47:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 346 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 54,096 KB
最終ジャッジ日時 2024-10-10 11:52:47
合計ジャッジ時間 2,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,308 KB
testcase_01 AC 39 ms
52,112 KB
testcase_02 AC 37 ms
53,016 KB
testcase_03 AC 37 ms
53,144 KB
testcase_04 AC 38 ms
51,624 KB
testcase_05 AC 39 ms
52,756 KB
testcase_06 AC 38 ms
53,768 KB
testcase_07 AC 39 ms
52,068 KB
testcase_08 AC 38 ms
52,180 KB
testcase_09 AC 38 ms
52,168 KB
testcase_10 AC 38 ms
52,464 KB
testcase_11 AC 38 ms
52,032 KB
testcase_12 AC 37 ms
53,764 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 37 ms
52,604 KB
testcase_16 AC 37 ms
52,832 KB
testcase_17 AC 38 ms
53,024 KB
testcase_18 AC 38 ms
52,612 KB
testcase_19 AC 37 ms
53,624 KB
testcase_20 AC 37 ms
52,112 KB
testcase_21 AC 38 ms
53,268 KB
testcase_22 AC 38 ms
52,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factorial(x):
    if x == 0:
        return 1
    return x * factorial(x-1)

def solve(n):
    if n < 100:
        return factorial(n) % 1000000000000
    return 0

def main():
    n = int(input())
    ret = solve(n)
    if ret == 0:
        print("000000000000")
    else:
        print(ret)

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