結果

問題 No.502 階乗を計算するだけ
ユーザー 佐藤淳平佐藤淳平
提出日時 2019-09-09 09:49:42
言語 Haskell
(9.8.2)
結果
MLE  
実行時間 -
コード長 172 bytes
コンパイル時間 10,246 ms
コンパイル使用メモリ 175,844 KB
実行使用メモリ 667,552 KB
最終ジャッジ日時 2024-06-28 09:14:12
合計ジャッジ時間 11,023 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 170 ms
42,368 KB
testcase_23 AC 51 ms
19,968 KB
testcase_24 AC 118 ms
35,456 KB
testcase_25 AC 14 ms
9,600 KB
testcase_26 AC 67 ms
22,912 KB
testcase_27 AC 40 ms
16,384 KB
testcase_28 AC 58 ms
20,992 KB
testcase_29 AC 23 ms
11,520 KB
testcase_30 AC 159 ms
40,576 KB
testcase_31 AC 81 ms
25,728 KB
testcase_32 MLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

main :: IO ()
main = do
    n <- readLn
    print $ f n

f :: Integer -> Integer
f 0 = 1
f 1 = 1
f m = (m `mod` 1000000007) * (f (m - 1) `mod` 1000000007) `mod` 1000000007
0