結果

問題 No.594 壊れた宝物発見機
ユーザー GrayCoderGrayCoder
提出日時 2018-07-29 18:46:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 938 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 10,956 KB
実行使用メモリ 43,584 KB
最終ジャッジ日時 2023-09-23 16:11:54
合計ジャッジ時間 6,480 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

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)

def dist(axis, x, y, z):
    min_ = -100
    max_ = 100
    while max_ - min_ > 3:
        xi = min_ if axis == 'x' else x
        yi = min_ if axis == 'y' else y
        zi = min_ if axis == 'z' else z
        print('?', xi, yi, zi)
        d1 = int(input())
        xi = max_ if axis == 'x' else x
        yi = max_ if axis == 'y' else y
        zi = max_ if axis == 'z' else z
        print('?', xi, yi, zi)
        d2 = int(input())
        if d1 < d2:
            max_ = (min_ + max_) // 2
        else:
            min_ = (min_ + max_) // 2
    if d1 <= d2:
        return d1
    else:
        return d2

main()
0