結果
問題 | No.1429 Simple Dowsing |
ユーザー | kokatsu |
提出日時 | 2022-04-07 19:59:49 |
言語 | D (dmd 2.106.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 336 bytes |
コンパイル時間 | 2,199 ms |
コンパイル使用メモリ | 209,772 KB |
実行使用メモリ | 40,384 KB |
最終ジャッジ日時 | 2024-06-22 14:49:39 |
合計ジャッジ時間 | 8,901 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
import std; void main() { int L = 100; int[] p = [0, L], q = [0, 0]; auto d = new int[](2); foreach (i; 0 .. 2) { writefln("? %d %d", p[i], q[i]); readf("%d\n", d[i]); } int r = (L * L + d[0] - d[1]) / (L * 2); int s = to!real(d[0]-r*r).sqrt.floor.to!int; writefln("! %d %d", r, s); }