結果

問題 No.594 壊れた宝物発見機
ユーザー mkawa2mkawa2
提出日時 2020-01-05 21:27:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,616 KB
平均クエリ数 52.85
最終ジャッジ日時 2024-07-16 19:12:57
合計ジャッジ時間 4,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
27,360 KB
testcase_01 AC 142 ms
27,360 KB
testcase_02 AC 142 ms
27,368 KB
testcase_03 AC 141 ms
27,488 KB
testcase_04 AC 136 ms
27,224 KB
testcase_05 AC 142 ms
27,488 KB
testcase_06 AC 138 ms
27,368 KB
testcase_07 AC 139 ms
27,232 KB
testcase_08 AC 138 ms
27,232 KB
testcase_09 AC 141 ms
27,488 KB
testcase_10 AC 140 ms
27,360 KB
testcase_11 AC 144 ms
27,360 KB
testcase_12 AC 145 ms
27,616 KB
testcase_13 AC 139 ms
27,488 KB
testcase_14 AC 144 ms
27,616 KB
testcase_15 AC 142 ms
26,976 KB
testcase_16 AC 142 ms
26,856 KB
testcase_17 AC 147 ms
27,488 KB
testcase_18 AC 147 ms
27,104 KB
testcase_19 AC 141 ms
27,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    def question(i,a):
        if memo[a]!=-1:return memo[a]
        xyz=[0,0,0]
        xyz[i]=a
        print("?",end=" ")
        print(*xyz)
        memo[a]=res=int(input())
        return res

    ans=[0]*3
    for i in range(3):
        memo = [-1]*205
        l=-101
        r=101
        while l+2<r:
            cl=(2*l+r)//3
            cr=(l+2*r)//3
            dl=question(i,cl)
            dr=question(i,cr)
            if dl<dr:r=cr
            else:l=cl
        c=(l+r)//2
        dl=question(i,l)
        dc=question(i,c)
        dr=question(i,r)
        mn=min(dl,dc,dr)
        if mn==dl:ans[i]=l
        if mn==dc:ans[i]=c
        if mn==dr:ans[i]=r
    print("!",end=" ")
    print(*ans)

main()
0