結果

問題 No.502 階乗を計算するだけ
ユーザー NASANASA
提出日時 2017-04-21 08:37:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 115 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 10,668 KB
実行使用メモリ 8,536 KB
最終ジャッジ日時 2023-09-27 10:38:34
合計ジャッジ時間 3,141 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 14 ms
7,760 KB
testcase_02 AC 14 ms
7,760 KB
testcase_03 AC 14 ms
7,764 KB
testcase_04 AC 14 ms
7,780 KB
testcase_05 AC 13 ms
7,924 KB
testcase_06 AC 14 ms
7,892 KB
testcase_07 AC 13 ms
7,852 KB
testcase_08 AC 13 ms
7,828 KB
testcase_09 AC 13 ms
7,888 KB
testcase_10 AC 14 ms
7,812 KB
testcase_11 AC 14 ms
7,836 KB
testcase_12 AC 13 ms
7,760 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def kaijou(n):
    if n==1:
       return 1
    else:
       return n*kaijou(n-1)

f=input()

print(kaijou(int(f)))
0