結果

問題 No.594 壊れた宝物発見機
ユーザー rlangevinrlangevin
提出日時 2024-03-12 12:20:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,295 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 70,240 KB
平均クエリ数 104.10
最終ジャッジ日時 2024-09-29 22:16:13
合計ジャッジ時間 5,232 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
69,088 KB
testcase_01 AC 145 ms
69,464 KB
testcase_02 AC 147 ms
69,976 KB
testcase_03 AC 146 ms
70,104 KB
testcase_04 AC 150 ms
69,464 KB
testcase_05 AC 149 ms
69,600 KB
testcase_06 AC 154 ms
69,344 KB
testcase_07 AC 145 ms
69,592 KB
testcase_08 AC 152 ms
69,984 KB
testcase_09 AC 144 ms
69,472 KB
testcase_10 AC 143 ms
69,856 KB
testcase_11 AC 141 ms
69,080 KB
testcase_12 AC 137 ms
69,568 KB
testcase_13 AC 140 ms
70,240 KB
testcase_14 AC 138 ms
69,592 KB
testcase_15 AC 142 ms
69,464 KB
testcase_16 AC 141 ms
70,072 KB
testcase_17 AC 140 ms
69,456 KB
testcase_18 AC 139 ms
69,720 KB
testcase_19 AC 146 ms
69,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

lx, rx = -150, 150
ly, ry = -150, 150
lz, rz = -150, 150
while rx - lx > 2:
    c1, c2 = (lx * 2 + rx)//3, (lx + rx * 2)//3
    print("? {} {} {}".format(c1, ly, lz))
    sys.stdout.flush()
    f1 = int(input())
    print("? {} {} {}".format(c2, ly, lz))
    sys.stdout.flush()
    f2 = int(input())
    if f1 >= f2:
        lx = c1
    else:
        rx = c2
        
while ry - ly > 2:
    c1, c2 = (ly * 2 + ry)//3, (ly + ry * 2)//3
    print("? {} {} {}".format(lx, c1, lz))
    sys.stdout.flush()
    f1 = int(input())
    print("? {} {} {}".format(lx, c2, lz))
    sys.stdout.flush()
    f2 = int(input())
    if f1 >= f2:
        ly = c1
    else:
        ry = c2
    
while rz - lz > 2:
    c1, c2 = (lz * 2 + rz)//3, (lz + rz * 2)//3
    print("? {} {} {}".format(lx, ly, c1))
    sys.stdout.flush()
    f1 = int(input())
    print("? {} {} {}".format(lx, ly, c2))
    sys.stdout.flush()
    f2 = int(input())
    if f1 >= f2:
        lz = c1
    else:
        rz = c2
        
ans = []
minv = 10 ** 18
for x in range(lx, rx + 1):
    for y in range(ly, ry + 1):
        for z in range(lz, rz + 1):
            print("? {} {} {}".format(x, y, z))
            d = int(input())
            if d <= minv:
                minv = d
                ans = ["!", x, y, z]
print(*ans)
0