結果

問題 No.514 宝探し3
ユーザー LeonardoneLeonardone
提出日時 2017-05-06 00:07:43
言語 Haskell
(9.8.2)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 3,826 ms
コンパイル使用メモリ 170,752 KB
実行使用メモリ 25,604 KB
平均クエリ数 2.75
最終ジャッジ日時 2024-07-16 13:30:22
合計ジャッジ時間 2,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
25,448 KB
testcase_01 AC 20 ms
24,836 KB
testcase_02 AC 20 ms
24,836 KB
testcase_03 AC 21 ms
24,580 KB
testcase_04 AC 21 ms
25,220 KB
testcase_05 AC 20 ms
24,836 KB
testcase_06 AC 20 ms
24,836 KB
testcase_07 AC 20 ms
25,220 KB
testcase_08 AC 22 ms
24,836 KB
testcase_09 AC 21 ms
25,604 KB
testcase_10 AC 20 ms
25,220 KB
testcase_11 AC 20 ms
25,220 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 #

-- Try yukicoder
-- author: Leonardone @ NEETSDKASU

import System.IO

main = do
    let maxlen = 1000000000
    putStrLn "0 0"
    hFlush stdout
    len0 <- read <$> getLine
    if len0 == 0 then return ()
    else do
        putStrLn $ "0 " ++ show maxlen
        hFlush stdout
        len1 <- read <$> getLine
        if len1 == 0 then return ()
        else do
            let x = (len0 + len1 - maxlen) `div` 2
            let y = len0 - x
            putStrLn $ show x ++ " " ++ show y
            hFlush stdout
            getLine
            return ()

    
0