結果

問題 No.1429 Simple Dowsing
ユーザー miya145592miya145592
提出日時 2023-05-09 01:14:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 506 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 84,136 KB
平均クエリ数 2.53
最終ジャッジ日時 2024-11-25 14:38:18
合計ジャッジ時間 2,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
74,292 KB
testcase_01 AC 60 ms
76,304 KB
testcase_02 AC 58 ms
74,312 KB
testcase_03 AC 57 ms
75,904 KB
testcase_04 AC 57 ms
74,888 KB
testcase_05 AC 58 ms
74,560 KB
testcase_06 AC 56 ms
74,504 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 58 ms
76,044 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 56 ms
74,708 KB
testcase_14 AC 56 ms
76,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print("? 0 0")
d = int(input())
S = set()
T = None
for a in range(101):
    for b in range(101):
        if a*a+b*b==d:
            if a==b:
                T = (a, b)
            else:
                S.add((a, b))
if T is not None and len(S)==0:
    print(f"! {T[0]} {T[1]}")
    exit()
for a, b in S:
    print(f"? {a} {b}")
    d2 = int(input())
    if d2==0:
        print(f"! {a} {b}")
    elif d2==(a-b)**2+(b-a)**2:
        print(f"! {b} {a}")
    else:
        print(f"! {T[0]} {T[1]}")
    exit()
0