結果
問題 | No.513 宝探し2 |
ユーザー | aimy |
提出日時 | 2017-05-05 23:22:15 |
言語 | Haskell (9.8.2) |
結果 |
RE
|
実行時間 | - |
コード長 | 478 bytes |
コンパイル時間 | 5,765 ms |
コンパイル使用メモリ | 176,640 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 3.67 |
最終ジャッジ日時 | 2024-07-16 13:25:37 |
合計ジャッジ時間 | 7,036 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
コンパイルメッセージ
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 main = main' (0,0) where main' (x,y) = do putStrLn (unwords (map show [x,y])) hFlush stdout m <- readLn putStrLn (unwords (map show [m,0])) hFlush stdout mx <- readLn putStrLn (unwords (map show [m - div mx 2, div mx 2])) hFlush stdout mx <- readLn putStrLn (unwords (map show [m - div mx 2 + 1, div mx 2 - 1])) hFlush stdout mx <- readLn putStrLn (unwords (map show [m - div mx 2 - 1, div mx 2 + 1])) hFlush stdout