結果

問題 No.1429 Simple Dowsing
ユーザー miya145592miya145592
提出日時 2023-05-09 01:19:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,028 KB
平均クエリ数 2.87
最終ジャッジ日時 2024-05-04 06:23:54
合計ジャッジ時間 2,639 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
75,744 KB
testcase_01 AC 63 ms
74,676 KB
testcase_02 AC 64 ms
75,396 KB
testcase_03 AC 63 ms
74,332 KB
testcase_04 AC 64 ms
74,864 KB
testcase_05 AC 66 ms
75,184 KB
testcase_06 AC 65 ms
75,356 KB
testcase_07 AC 64 ms
74,504 KB
testcase_08 AC 63 ms
75,124 KB
testcase_09 AC 65 ms
75,432 KB
testcase_10 AC 64 ms
74,780 KB
testcase_11 AC 64 ms
74,064 KB
testcase_12 AC 65 ms
76,028 KB
testcase_13 AC 63 ms
74,608 KB
testcase_14 AC 64 ms
75,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print("? 0 0")
d = int(input())
S = set()
for a in range(101):
    for b in range(101):
        if a*a+b*b==d:
            S.add((a, b))
if len(S)==1:
    for a, b in S:
        print(f"! {a} {b}")
        exit()
for a, b in S:
    print(f"? {a} {b}")
    d2 = int(input())
    if d2==0:
        print(f"! {a} {b}")
        exit()
    else:
        for na, nb in S:
            if d2==(na-a)**2+(nb-b)**2:
                print(f"! {na} {nb}")
                exit()

0