結果

問題 No.51 やる気の問題
ユーザー po6l55y36po6l55y36
提出日時 2016-08-19 00:06:30
言語 Haskell
(9.8.2)
結果
AC  
実行時間 33 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 7,917 ms
コンパイル使用メモリ 177,792 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-11-07 19:34:37
合計ジャッジ時間 8,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 20 ms
15,104 KB
testcase_06 AC 15 ms
14,080 KB
testcase_07 AC 13 ms
12,288 KB
testcase_08 AC 9 ms
10,112 KB
testcase_09 AC 32 ms
20,992 KB
testcase_10 AC 9 ms
10,496 KB
testcase_11 AC 9 ms
10,368 KB
testcase_12 AC 15 ms
13,824 KB
testcase_13 AC 15 ms
13,824 KB
testcase_14 AC 10 ms
11,136 KB
testcase_15 AC 21 ms
16,000 KB
testcase_16 AC 7 ms
9,088 KB
testcase_17 AC 3 ms
5,504 KB
testcase_18 AC 22 ms
15,744 KB
testcase_19 AC 25 ms
16,768 KB
testcase_20 AC 15 ms
14,464 KB
testcase_21 AC 3 ms
5,504 KB
testcase_22 AC 33 ms
20,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
  w <- readLn
  d <- readLn
  let
    ans = (w, d) : map (\(w1, d1) -> (w1-w1`div`d1^2, d1-1)) ans
  print $ fst $ ans !! (d-1)
0