結果
問題 | No.513 宝探し2 |
ユーザー | brthyyjp |
提出日時 | 2021-03-30 14:07:51 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 585 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 71,544 KB |
平均クエリ数 | 48.25 |
最終ジャッジ日時 | 2024-07-17 11:07:45 |
合計ジャッジ時間 | 3,336 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 59 ms
69,288 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 59 ms
69,884 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 print(0, y, flush=True) d = int(input()) if d == 0: exit() x = d-y print(x, y, flush=True) d = int(input()) if d == 0: exit()