結果

問題 No.1429 Simple Dowsing
ユーザー gorugo30gorugo30
提出日時 2021-03-14 14:04:44
言語 PyPy3
(7.3.15)
結果
QLE  
実行時間 -
コード長 276 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 76,804 KB
平均クエリ数 2.33
最終ジャッジ日時 2024-07-17 10:46:15
合計ジャッジ時間 2,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 QLE -
testcase_01 AC 58 ms
68,740 KB
testcase_02 QLE -
testcase_03 AC 62 ms
74,288 KB
testcase_04 AC 61 ms
75,624 KB
testcase_05 QLE -
testcase_06 AC 61 ms
74,488 KB
testcase_07 QLE -
testcase_08 QLE -
testcase_09 QLE -
testcase_10 QLE -
testcase_11 QLE -
testcase_12 QLE -
testcase_13 AC 60 ms
75,468 KB
testcase_14 QLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

print("? 0 0")
r1 = int(input())
print("? 100 0")
r2 = int(input())

for a in range(101):
    for b in range(101):
        if a * a + b * a != r1:
            continue
        if (100 - a) * (100 - a) + b * b != r2:
            continue
        print("!", a, b)
        exit()
0