結果

問題 No.1429 Simple Dowsing
ユーザー ygd.ygd.
提出日時 2021-04-02 11:01:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 87,172 KB
実行使用メモリ 88,164 KB
平均クエリ数 3.00
最終ジャッジ日時 2023-09-24 10:20:49
合計ジャッジ時間 3,133 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
87,844 KB
testcase_01 AC 99 ms
87,520 KB
testcase_02 AC 101 ms
87,536 KB
testcase_03 AC 99 ms
87,204 KB
testcase_04 AC 103 ms
87,432 KB
testcase_05 AC 101 ms
88,164 KB
testcase_06 AC 100 ms
87,044 KB
testcase_07 AC 100 ms
88,072 KB
testcase_08 AC 100 ms
87,496 KB
testcase_09 AC 102 ms
87,872 KB
testcase_10 AC 99 ms
87,232 KB
testcase_11 AC 100 ms
87,436 KB
testcase_12 AC 102 ms
87,368 KB
testcase_13 AC 100 ms
87,652 KB
testcase_14 AC 99 ms
88,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

first = ["?", 0, 0]
print(*first)
d2 = int(input())
second = ["?", 100, 0]
print(*second)
e2 = int(input())

x = (10000 + d2 - e2)//200
y = round(round(d2 - x**2)**0.5)
z = ["!",x,y]
print(*z)
0