結果

問題 No.594 壊れた宝物発見機
ユーザー GrayCoderGrayCoder
提出日時 2018-07-29 20:25:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,013 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 10,832 KB
実行使用メモリ 44,012 KB
最終ジャッジ日時 2023-09-23 16:11:41
合計ジャッジ時間 6,512 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):
    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)
        d = int(input())
        if d < dmin:
            dmin = d
        else:
            break
        point += 10

    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)
        d = int(input())
        if d < dmin:
            dmin = d
        else:
            break
    return point + 1

main()
0