結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
74,984 KB
testcase_01 AC 58 ms
74,396 KB
testcase_02 AC 58 ms
75,324 KB
testcase_03 AC 57 ms
76,152 KB
testcase_04 AC 58 ms
76,048 KB
testcase_05 AC 58 ms
74,732 KB
testcase_06 AC 58 ms
75,344 KB
testcase_07 AC 58 ms
74,788 KB
testcase_08 AC 58 ms
76,008 KB
testcase_09 AC 59 ms
75,520 KB
testcase_10 AC 57 ms
75,628 KB
testcase_11 AC 58 ms
75,244 KB
testcase_12 AC 57 ms
75,740 KB
testcase_13 AC 59 ms
75,256 KB
testcase_14 AC 58 ms
74,492 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