結果

問題 No.523 LED
ユーザー aimyaimy
提出日時 2017-06-03 00:51:44
言語 Haskell
(9.8.2)
結果
AC  
実行時間 1,809 ms / 2,000 ms
コード長 100 bytes
コンパイル時間 10,490 ms
コンパイル使用メモリ 163,684 KB
実行使用メモリ 336,672 KB
最終ジャッジ日時 2023-10-22 02:14:02
合計ジャッジ時間 21,381 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,252 KB
testcase_01 AC 2 ms
5,312 KB
testcase_02 AC 22 ms
12,924 KB
testcase_03 AC 2 ms
5,252 KB
testcase_04 AC 2 ms
5,316 KB
testcase_05 AC 1,809 ms
336,616 KB
testcase_06 AC 3 ms
5,272 KB
testcase_07 AC 3 ms
5,252 KB
testcase_08 AC 2 ms
5,252 KB
testcase_09 AC 23 ms
10,820 KB
testcase_10 AC 3 ms
5,276 KB
testcase_11 AC 2 ms
5,348 KB
testcase_12 AC 3 ms
5,348 KB
testcase_13 AC 347 ms
78,864 KB
testcase_14 AC 2 ms
5,324 KB
testcase_15 AC 4 ms
6,236 KB
testcase_16 AC 2 ms
5,344 KB
testcase_17 AC 4 ms
6,336 KB
testcase_18 AC 1,780 ms
336,672 KB
testcase_19 AC 681 ms
151,568 KB
testcase_20 AC 621 ms
151,568 KB
testcase_21 AC 1,428 ms
298,000 KB
testcase_22 AC 1,529 ms
298,000 KB
testcase_23 AC 1,538 ms
298,000 KB
testcase_24 AC 42 ms
17,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

q = 1000000007

main = readLn >>= print . (\x -> foldr (\n acc -> (n*(2*n-1)*acc) `mod` q) 1 [1..x])
0