結果

問題 No.513 宝探し2
ユーザー brthyyjpbrthyyjp
提出日時 2021-03-30 14:01:14
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 921 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 84,000 KB
平均クエリ数 83.42
最終ジャッジ日時 2024-07-17 11:07:11
合計ジャッジ時間 3,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 66 ms
70,084 KB
testcase_02 RE -
testcase_03 AC 67 ms
70,952 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 66 ms
69,828 KB
testcase_08 AC 58 ms
69,748 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 60 ms
69,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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(0, yr, 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)
print(x, y, flush=True)
0