結果

問題 No.2502 Optimization in the Dark
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-10-13 23:37:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 767 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 201,356 KB
実行使用メモリ 25,836 KB
平均クエリ数 4.00
最終ジャッジ日時 2024-09-15 19:29:52
合計ジャッジ時間 5,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,196 KB
testcase_01 AC 24 ms
25,452 KB
testcase_02 AC 24 ms
25,580 KB
testcase_03 AC 23 ms
25,196 KB
testcase_04 AC 24 ms
25,452 KB
testcase_05 AC 24 ms
25,196 KB
testcase_06 AC 24 ms
24,940 KB
testcase_07 AC 23 ms
24,940 KB
testcase_08 AC 24 ms
24,800 KB
testcase_09 AC 23 ms
24,940 KB
testcase_10 AC 23 ms
24,812 KB
testcase_11 AC 23 ms
25,068 KB
testcase_12 AC 24 ms
24,812 KB
testcase_13 AC 23 ms
24,796 KB
testcase_14 AC 24 ms
25,068 KB
testcase_15 AC 23 ms
24,812 KB
testcase_16 AC 24 ms
24,940 KB
testcase_17 AC 23 ms
25,196 KB
testcase_18 AC 24 ms
25,196 KB
testcase_19 AC 24 ms
25,196 KB
testcase_20 AC 24 ms
24,812 KB
testcase_21 AC 23 ms
24,812 KB
testcase_22 AC 24 ms
25,196 KB
testcase_23 AC 24 ms
25,196 KB
testcase_24 AC 24 ms
24,812 KB
testcase_25 AC 24 ms
25,068 KB
testcase_26 AC 23 ms
24,556 KB
testcase_27 AC 23 ms
25,196 KB
testcase_28 AC 24 ms
25,196 KB
testcase_29 AC 24 ms
24,812 KB
testcase_30 AC 23 ms
25,068 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int N;
	cin >> N;
	cout << "? 1 " << N * 2 << " 2 " << N * 2 << endl;
	string s;
	cin >> s;
	int i, j, k;
	if (s == "Yes") {
		cout << "? 2 " << N * 2 << " 3 " << N * 2 << endl;
		string t;
		cin >> t;
		k = (t == "Yes" ? 3 : 2);
	} else {
		cout << "? 1 " << N * 2 << " 3 " << N * 2 << endl;
		string t;
		cin >> t;
		k = (t == "Yes" ? 3 : 1);
	}
	i = (k + 1 > 3 ? k - 2 : k + 1), j = (k + 2 > 3 ? k - 1 : k + 2);
	cout << "? " << i << " " << N << " " << j << " " << N << endl;
	cin >> s;
	if (s == "No") {
		swap(i, j);
	}
	cout << "!";
	for (int p = 0; p < N * 2; p ++) {
		cout << " " << (p & 1 ? i : j) << " " << k;
	}
	for (int p = 0; p < N; p ++) {
		cout << " " << i << " " << j;
	}
	cout<< endl;
}
0