結果

問題 No.502 階乗を計算するだけ
ユーザー かりあげクンかりあげクン
提出日時 2020-09-07 17:30:59
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 311 bytes
コンパイル時間 10,787 ms
コンパイル使用メモリ 174,720 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-11-29 11:03:46
合計ジャッジ時間 43,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 2 ms
12,928 KB
testcase_02 AC 1 ms
12,800 KB
testcase_03 AC 2 ms
10,496 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 1 ms
12,928 KB
testcase_06 AC 1 ms
12,928 KB
testcase_07 AC 1 ms
10,496 KB
testcase_08 AC 2 ms
12,928 KB
testcase_09 AC 2 ms
10,496 KB
testcase_10 AC 1 ms
10,496 KB
testcase_11 AC 2 ms
12,928 KB
testcase_12 AC 1 ms
10,496 KB
testcase_13 AC 1 ms
12,928 KB
testcase_14 AC 2 ms
12,928 KB
testcase_15 AC 1 ms
10,496 KB
testcase_16 AC 2 ms
10,496 KB
testcase_17 AC 1 ms
12,928 KB
testcase_18 AC 2 ms
12,928 KB
testcase_19 AC 1 ms
10,496 KB
testcase_20 AC 1 ms
10,496 KB
testcase_21 AC 2 ms
12,928 KB
testcase_22 AC 98 ms
13,184 KB
testcase_23 AC 30 ms
14,496 KB
testcase_24 AC 66 ms
13,312 KB
testcase_25 AC 12 ms
15,360 KB
testcase_26 AC 39 ms
13,312 KB
testcase_27 AC 26 ms
15,488 KB
testcase_28 AC 34 ms
13,184 KB
testcase_29 AC 17 ms
14,628 KB
testcase_30 AC 91 ms
13,056 KB
testcase_31 AC 46 ms
15,360 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

import qualified Data.List as List

main :: IO ()
main = do
  n <- readLn :: IO Integer
  print $ facMod 1000000007 n

facMod :: Integer -> Integer -> Integer
facMod n x = List.foldl' (prodMod n) 1 [1..x]

prodMod :: Integer -> Integer -> Integer -> Integer
prodMod n x y =
  ((x `mod` n) * (y `mod` n)) `mod` n
0