結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
69,192 KB
testcase_01 AC 59 ms
69,712 KB
testcase_02 AC 62 ms
68,864 KB
testcase_03 AC 59 ms
69,540 KB
testcase_04 AC 61 ms
75,724 KB
testcase_05 AC 59 ms
69,304 KB
testcase_06 AC 56 ms
68,664 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 60 ms
68,756 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 58 ms
69,532 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