結果
問題 | No.2502 Optimization in the Dark |
ユーザー | suisen |
提出日時 | 2023-01-12 16:04:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 902 bytes |
コンパイル時間 | 678 ms |
コンパイル使用メモリ | 68,736 KB |
実行使用メモリ | 93,932 KB |
平均クエリ数 | 4.00 |
最終ジャッジ日時 | 2024-09-15 16:05:50 |
合計ジャッジ時間 | 10,324 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
ソースコード
#include <cassert> #include <iostream> bool query(int i, int x, int j, int y) { std::cout << "? " << i << ' ' << x << ' ' << j << ' ' << y << '\n', std::cout.flush(); std::string response; std::cin >> response; if (response == "Yes") { return true; } else if (response == "No") { return false; } else { assert(false); } } void output_answer(int n, int i1, int j1, int i2, int j2, int i3, int j3) { std::cout << "!"; for (int i = 0; i < n; ++i) std::cout << ' ' << i1 << ' ' << j1; for (int i = 0; i < n; ++i) std::cout << ' ' << i2 << ' ' << j2; for (int i = 0; i < n; ++i) std::cout << ' ' << i3 << ' ' << j3; std::cout << '\n', std::cout.flush(); } int main() { int n; std::cin >> n; query(1, 1, 1, 1); query(1, 1, 1, 1); query(1, 1, 1, 1); query(1, 1, 1, 1); output_answer(n, 1, 2, 2, 3, 3, 1); }