結果
問題 | No.513 宝探し2 |
ユーザー | ducktail |
提出日時 | 2018-07-11 14:31:01 |
言語 | Haskell (9.8.2) |
結果 |
RE
|
実行時間 | - |
コード長 | 298 bytes |
コンパイル時間 | 7,503 ms |
コンパイル使用メモリ | 174,592 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 2.92 |
最終ジャッジ日時 | 2024-07-16 15:55:22 |
合計ジャッジ時間 | 8,649 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
24,964 KB |
testcase_01 | AC | 21 ms
25,220 KB |
testcase_02 | AC | 23 ms
24,964 KB |
testcase_03 | AC | 22 ms
25,220 KB |
testcase_04 | AC | 20 ms
25,220 KB |
testcase_05 | AC | 21 ms
24,580 KB |
testcase_06 | AC | 21 ms
24,580 KB |
testcase_07 | AC | 20 ms
24,964 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 23 ms
24,580 KB |
testcase_11 | AC | 23 ms
24,964 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
ソースコード
import System.IO (hFlush, stdout) main :: IO () main = do putStrLn "0 0" hFlush stdout d1 <- readLn putStrLn "100000 0" hFlush stdout d2 <- readLn let ay = (d1 + d2 - 100000) `div` 2 let ax = d1 - ay putStrLn $ unwords $ map show $ [ax, ay] hFlush stdout getLine return ()