結果

問題 No.513 宝探し2
ユーザー ntudantuda
提出日時 2024-09-20 21:29:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 68,824 KB
平均クエリ数 6.92
最終ジャッジ日時 2024-09-20 21:29:18
合計ジャッジ時間 2,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
68,304 KB
testcase_01 AC 58 ms
68,280 KB
testcase_02 AC 59 ms
68,696 KB
testcase_03 AC 58 ms
68,824 KB
testcase_04 AC 59 ms
68,440 KB
testcase_05 AC 58 ms
68,312 KB
testcase_06 AC 59 ms
68,568 KB
testcase_07 AC 60 ms
68,056 KB
testcase_08 AC 58 ms
68,312 KB
testcase_09 AC 56 ms
68,312 KB
testcase_10 AC 58 ms
68,184 KB
testcase_11 AC 63 ms
68,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def op(x, y):
    print(x, y)
    ret = int(input())
    if ret == 0:
        exit()
    return ret

def op2(x, y):
    ax, ay = -1, -2
    print(x, y)
    if (x, y) == (ax, ay):
        print("correct")
        exit()
    return abs(ax - x) + abs(ay - y)

a0 = op(0, 0)
dir = [[1, 0], [0, 1], [-1, 0], [0, -1]]
X = []
for x, y in dir:
    a = op(x, y)
    X.append(a - a0)
if X.count(-1) == 1:
    i = X.index(-1)
    x = a0 * dir[i][0]
    y = a0 * dir[i][1]
    op(x, y)
for i in range(4):
    if X[i] == -1 and X[(i + 1) % 4] == -1:
        break
i1 = i
i2 = (i + 1) % 4

x1 = a0 * dir[i1][0]
y1 = a0 * dir[i1][1]
a1 = op(x1, y1)
x2 = a0 * dir[i2][0]
y2 = a0 * dir[i2][1]
a2 = op(x2, y2)
if i1 & 1:
    a1,a2 =a2,a1
x3 = a2 // 2 * (dir[i1][0] + dir[i2][0])
y3 = a1 // 2 * (dir[i1][1] + dir[i2][1])
op(x3, y3)
0