結果

問題 No.1429 Simple Dowsing
ユーザー miya145592miya145592
提出日時 2023-05-09 01:00:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 75,164 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-05-04 06:15:33
合計ジャッジ時間 2,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
67,912 KB
testcase_01 AC 60 ms
69,172 KB
testcase_02 AC 61 ms
69,508 KB
testcase_03 AC 59 ms
69,124 KB
testcase_04 AC 62 ms
74,644 KB
testcase_05 AC 59 ms
69,232 KB
testcase_06 AC 59 ms
69,852 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 59 ms
70,360 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 60 ms
69,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print("? 0 0")
d = int(input())
for a in range(101):
    for b in range(101):
        if a*a+b*b==d:
            print(f"? {a} {b}")
            d2 = int(input())
            if d2==0:
                print(f"! {a} {b}")
            else:
                print(f"! {b} {a}")
            exit()
0