結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
27,744 KB
testcase_01 AC 154 ms
27,744 KB
testcase_02 AC 152 ms
27,240 KB
testcase_03 AC 151 ms
27,880 KB
testcase_04 AC 151 ms
27,872 KB
testcase_05 AC 154 ms
27,240 KB
testcase_06 AC 152 ms
27,872 KB
testcase_07 AC 151 ms
27,744 KB
testcase_08 AC 155 ms
27,744 KB
testcase_09 AC 152 ms
27,616 KB
testcase_10 AC 162 ms
27,744 KB
testcase_11 AC 156 ms
27,488 KB
testcase_12 AC 154 ms
27,488 KB
testcase_13 AC 158 ms
27,872 KB
testcase_14 AC 153 ms
27,240 KB
testcase_15 AC 153 ms
27,880 KB
testcase_16 AC 153 ms
27,744 KB
testcase_17 AC 153 ms
27,360 KB
testcase_18 AC 156 ms
27,744 KB
testcase_19 AC 152 ms
27,488 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