結果

問題 No.836 じょうよ
ユーザー trineutrontrineutron
提出日時 2019-06-15 00:55:27
言語 Haskell
(9.8.2)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 131 bytes
コンパイル時間 7,227 ms
コンパイル使用メモリ 157,168 KB
実行使用メモリ 11,364 KB
最終ジャッジ日時 2023-08-09 20:45:09
合計ジャッジ時間 5,502 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
11,312 KB
testcase_01 AC 2 ms
7,212 KB
testcase_02 AC 2 ms
7,172 KB
testcase_03 AC 3 ms
7,172 KB
testcase_04 AC 2 ms
7,128 KB
testcase_05 AC 3 ms
7,164 KB
testcase_06 AC 2 ms
7,212 KB
testcase_07 AC 2 ms
7,152 KB
testcase_08 AC 3 ms
7,200 KB
testcase_09 AC 3 ms
7,124 KB
testcase_10 AC 3 ms
7,148 KB
testcase_11 AC 12 ms
11,348 KB
testcase_12 AC 13 ms
11,232 KB
testcase_13 AC 12 ms
11,200 KB
testcase_14 AC 4 ms
8,484 KB
testcase_15 AC 13 ms
11,276 KB
testcase_16 AC 52 ms
11,364 KB
testcase_17 AC 52 ms
11,328 KB
testcase_18 AC 12 ms
11,256 KB
testcase_19 AC 22 ms
11,240 KB
testcase_20 AC 32 ms
11,324 KB
testcase_21 AC 5 ms
10,004 KB
testcase_22 AC 22 ms
11,252 KB
testcase_23 AC 42 ms
11,236 KB
testcase_24 AC 8 ms
11,208 KB
testcase_25 AC 22 ms
11,244 KB
testcase_26 AC 4 ms
8,400 KB
testcase_27 AC 5 ms
9,220 KB
testcase_28 AC 12 ms
11,280 KB
testcase_29 AC 5 ms
10,032 KB
testcase_30 AC 4 ms
9,004 KB
testcase_31 AC 12 ms
11,208 KB
testcase_32 AC 12 ms
11,204 KB
testcase_33 AC 4 ms
8,984 KB
testcase_34 AC 12 ms
11,260 KB
testcase_35 AC 8 ms
11,208 KB
testcase_36 AC 22 ms
11,248 KB
testcase_37 AC 22 ms
11,256 KB
testcase_38 AC 32 ms
11,272 KB
testcase_39 AC 22 ms
11,248 KB
testcase_40 AC 42 ms
11,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

main = do
    [l, r, n] <- map read . words <$> getLine
    mapM_ print [(r - i) `div` n - (l - 1 - i) `div` n | i <- [0 .. n - 1]]
0