結果

問題 No.502 階乗を計算するだけ
ユーザー MG-SCRPTMG-SCRPT
提出日時 2017-06-03 07:45:20
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 91 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 7,108 KB
実行使用メモリ 7,044 KB
最終ジャッジ日時 2023-10-22 02:33:15
合計ジャッジ時間 2,097 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,440 KB
testcase_01 AC 9 ms
6,440 KB
testcase_02 AC 9 ms
6,440 KB
testcase_03 AC 9 ms
6,440 KB
testcase_04 AC 10 ms
6,440 KB
testcase_05 AC 9 ms
6,440 KB
testcase_06 AC 9 ms
6,440 KB
testcase_07 AC 9 ms
6,440 KB
testcase_08 AC 9 ms
6,440 KB
testcase_09 AC 9 ms
6,440 KB
testcase_10 AC 9 ms
6,440 KB
testcase_11 AC 9 ms
6,440 KB
testcase_12 AC 9 ms
6,440 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 fact(n):
 if n == 0: return 1
 return n * fact(n-1) 
 
d = input()
print (fact(d))
0