結果

問題 No.1429 Simple Dowsing
ユーザー so4649so4649
提出日時 2021-03-14 14:08:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 76,812 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-17 10:47:20
合計ジャッジ時間 2,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,836 KB
testcase_01 AC 58 ms
68,964 KB
testcase_02 AC 58 ms
68,476 KB
testcase_03 AC 62 ms
76,812 KB
testcase_04 AC 62 ms
76,272 KB
testcase_05 AC 60 ms
68,420 KB
testcase_06 AC 61 ms
75,860 KB
testcase_07 AC 61 ms
75,556 KB
testcase_08 AC 61 ms
75,184 KB
testcase_09 AC 62 ms
76,044 KB
testcase_10 AC 58 ms
69,904 KB
testcase_11 AC 63 ms
75,632 KB
testcase_12 AC 62 ms
75,772 KB
testcase_13 AC 62 ms
75,032 KB
testcase_14 AC 56 ms
69,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

print("? 0 0")
d1 = int(input())
print("? 0 100")
d2 = int(input())

for i in range(101):
    for j in range(101):
        if i**2 + j**2 == d1 and i**2 + (j-100)**2 == d2:
            print("! "+str(i)+" "+str(j))
            exit()
0