結果
問題 | No.1429 Simple Dowsing |
ユーザー | mine691 |
提出日時 | 2021-03-14 13:14:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 631 bytes |
コンパイル時間 | 8,401 ms |
コンパイル使用メモリ | 331,000 KB |
実行使用メモリ | 25,592 KB |
平均クエリ数 | 1.13 |
最終ジャッジ日時 | 2024-07-17 10:44:30 |
合計ジャッジ時間 | 9,335 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using Int = long long; #include "testlib.h" int main(int argc, char *argv[]) { registerValidation(argc, argv); int p1 = 0, q1 = 0, p2 = 100, q2 = 0; cout << "? " << p1 << " " << q1 << endl; int d1, d2; d1 = inf.readInt(0, 100, "n"); inf.readEoln(); cout << "? " << p2 << " " << q2 << endl; d2 = inf.readInt(0, 100, "n"); for (int i = 0; i <= 100; i++) { for (int j = 0; j <= 100; j++) { if ((p1 - i) * (p1 - i) + (q1 - j) * (q1 - j) == d1 and (p2 - i) * (p2 - i) + (q2 - j) * (q2 - j) == d2) { cout << "! " << i << " " << j << endl; return 0; } } } }