結果
問題 | No.513 宝探し2 |
ユーザー | brthyyjp |
提出日時 | 2021-03-30 14:03:25 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 924 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 84,460 KB |
平均クエリ数 | 79.92 |
最終ジャッジ日時 | 2024-07-17 11:07:22 |
合計ジャッジ時間 | 2,856 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 65 ms
70,192 KB |
testcase_02 | RE | - |
testcase_03 | AC | 65 ms
71,060 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 63 ms
69,508 KB |
testcase_07 | AC | 66 ms
70,160 KB |
testcase_08 | AC | 59 ms
69,484 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 59 ms
69,544 KB |
ソースコード
yl = 0 yr = 10**5 print(0, yl, flush=True) dl = int(input()) if dl == 0: exit() print(0, yr, flush=True) dr = int(input()) if dr == 0: exit() while yl+2 < yr: y1 = (2*yl+yr)//3 y2 = (yl+2*yr)//3 print(0, y1, flush=True) d1 = int(input()) if d1 == 0: exit() print(0, y2, flush=True) d2 = int(input()) if d2 == 0: exit() if d1 <= d2: yr = y2 else: yl = y1 y = (yl+yr)//2 xl =0 xr = 10**5 print(xl, y, flush=True) dl = int(input()) if dl == 0: exit() print(xr, y, flush=True) dr = int(input()) if dr == 0: exit() while xl+2 < xr: x1 = (2*xl+xr)//3 x2 = (xl+2*xr)//3 print(x1, y, flush=True) d1 = int(input()) if d1 == 0: exit() print(x2, y, flush=True) d2 = int(input()) if d2 == 0: exit() if d1 <= d2: xr = x2 else: xl = x1 x = (xl+xr)//2 print(x, y, flush=True)