結果

問題 No.594 壊れた宝物発見機
ユーザー titiatitia
提出日時 2024-05-30 03:13:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,425 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 27,880 KB
平均クエリ数 108.00
最終ジャッジ日時 2024-05-30 03:13:57
合計ジャッジ時間 5,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
27,496 KB
testcase_01 AC 163 ms
27,232 KB
testcase_02 AC 158 ms
27,744 KB
testcase_03 AC 153 ms
27,608 KB
testcase_04 AC 154 ms
27,880 KB
testcase_05 AC 154 ms
27,488 KB
testcase_06 AC 159 ms
27,360 KB
testcase_07 AC 162 ms
27,744 KB
testcase_08 AC 162 ms
27,744 KB
testcase_09 AC 156 ms
27,616 KB
testcase_10 AC 161 ms
27,736 KB
testcase_11 AC 155 ms
27,360 KB
testcase_12 AC 156 ms
27,744 KB
testcase_13 AC 155 ms
27,744 KB
testcase_14 AC 161 ms
27,616 KB
testcase_15 AC 159 ms
27,360 KB
testcase_16 AC 154 ms
27,616 KB
testcase_17 AC 159 ms
27,616 KB
testcase_18 AC 154 ms
27,744 KB
testcase_19 AC 153 ms
27,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

LX=[-150,150]
LY=[-150,150]
LZ=[-150,150]

for i in range(40):
    if i%3==0:
        print("?",LX[0]+(LX[1]-LX[0])//3,(LY[0]+LY[1])//2,(LZ[0]+LZ[1])//2,flush=True)
        x=int(input())
        print("?",LX[0]+(LX[1]-LX[0])//3*2,(LY[0]+LY[1])//2,(LZ[0]+LZ[1])//2,flush=True)
        y=int(input())

        if x<y:
            LX[1]=LX[0]+(LX[1]-LX[0])//3*2
        else:
            LX[0]=LX[0]+(LX[1]-LX[0])//3
            
    elif i%3==1:
        print("?",(LX[0]+LX[1])//2,LY[0]+(LY[1]-LY[0])//3,(LZ[0]+LZ[1])//2,flush=True)
        x=int(input())
        print("?",(LX[0]+LX[1])//2,LY[0]+(LY[1]-LY[0])//3*2,(LZ[0]+LZ[1])//2,flush=True)
        y=int(input())

        if x<=y:
            LY[1]=LY[0]+(LY[1]-LY[0])//3*2
        else:
            LY[0]=LY[0]+(LY[1]-LY[0])//3
    else:
        print("?",(LX[0]+LX[1])//2,(LY[0]+LY[1])//2,LZ[0]+(LZ[1]-LZ[0])//3,flush=True)
        x=int(input())
        print("?",(LX[0]+LX[1])//2,(LY[0]+LY[1])//2,LZ[0]+(LZ[1]-LZ[0])//3*2,flush=True)
        y=int(input())

        if x<=y:
            LZ[1]=LZ[0]+(LZ[1]-LZ[0])//3*2
        else:
            LZ[0]=LZ[0]+(LZ[1]-LZ[0])//3

MIN=1<<60

for i in range(-1,2):
    for j in range(-1,2):
        for k in range(-1,2):
            print("?",LX[0]+i,LY[0]+j,LZ[0]+k)
            x=int(input())
            if x<MIN:
                ind=[LX[0]+i,LY[0]+j,LZ[0]+k]

print("!",ind[0],ind[1],ind[2],flush=True)
        
        
0