結果

問題 No.934 Explosive energy drink
ユーザー 東前頭十一枚目東前頭十一枚目
提出日時 2020-03-21 19:55:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 1,647 ms
コンパイル使用メモリ 167,156 KB
実行使用メモリ 25,604 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-17 03:20:59
合計ジャッジ時間 6,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,452 KB
testcase_01 AC 350 ms
24,964 KB
testcase_02 AC 24 ms
24,836 KB
testcase_03 AC 174 ms
25,604 KB
testcase_04 AC 354 ms
24,568 KB
testcase_05 AC 23 ms
24,836 KB
testcase_06 AC 24 ms
24,836 KB
testcase_07 AC 24 ms
25,220 KB
testcase_08 AC 23 ms
24,580 KB
testcase_09 AC 24 ms
25,220 KB
testcase_10 AC 24 ms
25,220 KB
testcase_11 AC 24 ms
24,964 KB
testcase_12 AC 26 ms
24,836 KB
testcase_13 AC 28 ms
24,452 KB
testcase_14 AC 30 ms
25,220 KB
testcase_15 AC 113 ms
24,580 KB
testcase_16 AC 43 ms
24,580 KB
testcase_17 AC 66 ms
24,836 KB
testcase_18 AC 65 ms
24,836 KB
testcase_19 AC 133 ms
25,220 KB
testcase_20 AC 225 ms
24,836 KB
testcase_21 AC 243 ms
25,220 KB
testcase_22 AC 347 ms
24,580 KB
testcase_23 AC 349 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

bool ans[1010];
int main() {
	int n; cin >> n;
	int k = 0;
	for(int i = 1; i <= n; ++i) {
		cout << "? " << n - 1 << '\n';
		bool f = true;
		for(int j = 1; j <= n; ++j) {
			if(f and j != i) {
				cout << j;
				f = false;
			} else if(j != i) {
				cout << " " << j;
			}
		}
		cout << '\n';
		cout.flush();
		cin >> ans[i];
		if(not ans[i]) ++k;
	}
	cout << "! " << k << '\n';
	bool f = true;
	for(int j = 1; j <= n; ++j) {
		if(f and not ans[j]) {
			cout << j;
			f = false;
		} else if(not ans[j]) {
			cout << " " << j;
		}
	}
	cout << '\n';
	return 0;
}
0