結果

問題 No.594 壊れた宝物発見機
ユーザー GrayCoderGrayCoder
提出日時 2018-07-29 20:43:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 1,073 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,608 KB
平均クエリ数 72.90
最終ジャッジ日時 2024-07-16 15:58:27
合計ジャッジ時間 4,254 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
27,368 KB
testcase_01 AC 134 ms
26,976 KB
testcase_02 AC 140 ms
27,104 KB
testcase_03 AC 135 ms
27,232 KB
testcase_04 AC 133 ms
26,848 KB
testcase_05 AC 137 ms
27,232 KB
testcase_06 AC 136 ms
26,976 KB
testcase_07 AC 138 ms
27,104 KB
testcase_08 AC 131 ms
27,368 KB
testcase_09 AC 131 ms
26,976 KB
testcase_10 AC 134 ms
27,360 KB
testcase_11 AC 132 ms
27,608 KB
testcase_12 AC 133 ms
27,232 KB
testcase_13 AC 136 ms
27,232 KB
testcase_14 AC 136 ms
27,096 KB
testcase_15 AC 132 ms
26,976 KB
testcase_16 AC 132 ms
27,496 KB
testcase_17 AC 134 ms
27,488 KB
testcase_18 AC 136 ms
27,232 KB
testcase_19 AC 135 ms
26,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, stdout
input = lambda: stdin.readline().rstrip()
write = stdout.write

def main():
    x = y = z = 0
    for s in ('x', 'y', 'z'):
        d = dist(s, x, y, z)
        if s == 'x':
            x = d
        elif s == 'y':
            y = d
        else:
            z = d
    print('!', x, y, z)
    stdout.flush()

def dist(axis, x, y, z):
    point = -100
    max_ = 150
    dmin = float('inf')
    while point < max_:
        xi = point if axis == 'x' else x
        yi = point if axis == 'y' else y
        zi = point if axis == 'z' else z
        print('?', xi, yi, zi)
        stdout.flush()
        d = int(input())
        if d > dmin:
            break
        dmin = d
        point += 10
    dmin = d

    while 1:
        point -= 1
        xi = point if axis == 'x' else x
        yi = point if axis == 'y' else y
        zi = point if axis == 'z' else z
        print('?', xi, yi, zi)
        stdout.flush()
        d = int(input())
        if d < dmin:
            dmin = d
        else:
            break
    return point + 1

main()
0