結果

問題 No.1429 Simple Dowsing
ユーザー ygd.ygd.
提出日時 2021-04-02 11:02:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 70,928 KB
平均クエリ数 3.00
最終ジャッジ日時 2024-07-17 11:09:46
合計ジャッジ時間 2,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
70,928 KB
testcase_01 AC 60 ms
69,292 KB
testcase_02 AC 63 ms
68,672 KB
testcase_03 AC 60 ms
69,448 KB
testcase_04 AC 57 ms
69,156 KB
testcase_05 AC 57 ms
69,080 KB
testcase_06 AC 58 ms
69,780 KB
testcase_07 AC 60 ms
69,084 KB
testcase_08 AC 58 ms
69,452 KB
testcase_09 AC 59 ms
69,736 KB
testcase_10 AC 58 ms
70,476 KB
testcase_11 AC 58 ms
69,372 KB
testcase_12 AC 58 ms
69,564 KB
testcase_13 AC 59 ms
69,864 KB
testcase_14 AC 57 ms
69,304 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((d2 - x**2)**0.5)
z = ["!",x,y]
print(*z)
0