結果

問題 No.513 宝探し2
ユーザー aimyaimy
提出日時 2017-05-05 23:26:57
言語 Haskell
(9.6.2)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 328 bytes
コンパイル時間 1,890 ms
コンパイル使用メモリ 166,900 KB
実行使用メモリ 24,420 KB
平均クエリ数 2.83
最終ジャッジ日時 2023-09-24 01:08:07
合計ジャッジ時間 2,113 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
24,252 KB
testcase_01 AC 25 ms
24,384 KB
testcase_02 AC 22 ms
24,036 KB
testcase_03 AC 23 ms
24,420 KB
testcase_04 AC 23 ms
24,036 KB
testcase_05 AC 23 ms
23,388 KB
testcase_06 AC 20 ms
23,400 KB
testcase_07 AC 21 ms
23,412 KB
testcase_08 AC 20 ms
23,820 KB
testcase_09 AC 21 ms
24,336 KB
testcase_10 AC 20 ms
24,036 KB
testcase_11 AC 21 ms
24,384 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 #

import System.IO
import Control.Monad

main = main' (0,0)
 where
  main' (x,y) = do
   putStrLn (unwords (map show [x,y]))
   hFlush stdout
   m <- readLn
   unless (m==0) $ do
    putStrLn (unwords (map show [m,0]))
    hFlush stdout
    mx <- readLn
    putStrLn (unwords (map show [m - div mx 2, div mx 2]))
    hFlush stdout
0