結果
問題 | No.513 宝探し2 |
ユーザー | siman |
提出日時 | 2020-12-10 08:32:55 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 540 bytes |
コンパイル時間 | 1,560 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 29,272 KB |
最終ジャッジ日時 | 2024-07-17 09:57:37 |
合計ジャッジ時間 | 4,177 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 139 ms
29,144 KB |
testcase_06 | AC | 129 ms
29,016 KB |
testcase_07 | AC | 127 ms
28,888 KB |
testcase_08 | AC | 131 ms
28,888 KB |
testcase_09 | AC | 115 ms
29,144 KB |
testcase_10 | AC | 120 ms
29,144 KB |
testcase_11 | AC | 113 ms
28,888 KB |
コンパイルメッセージ
Syntax OK
ソースコード
cy = 0 cx = 0 STDOUT.puts("%d %d" % [cx, cy]) STDOUT.flush current_d = gets.to_i ok = 0 ng = 100_001 50.times do x = (ok + ng) / 2 STDOUT.puts("%d %d" % [x, cy]) STDOUT.flush d = gets.to_i if d == 0 exit end if current_d >= d ok = x current_d = d else ng = x end end cx = ok ok = 0 ng = 100_001 49.times do y = (ok + ng) / 2 STDOUT.puts("%d %d" % [cx, y]) STDOUT.flush d = gets.to_i if d == 0 exit end if current_d >= d ok = y current_d = d else ng = y end end