結果

問題 No.934 Explosive energy drink
ユーザー SSRSSSRS
提出日時 2020-11-10 08:15:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 71,324 KB
実行使用メモリ 25,220 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-17 07:22:02
合計ジャッジ時間 5,655 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,196 KB
testcase_01 AC 332 ms
24,836 KB
testcase_02 AC 25 ms
24,836 KB
testcase_03 AC 168 ms
25,196 KB
testcase_04 AC 335 ms
25,220 KB
testcase_05 AC 27 ms
25,220 KB
testcase_06 AC 26 ms
25,220 KB
testcase_07 AC 27 ms
24,836 KB
testcase_08 AC 25 ms
25,220 KB
testcase_09 AC 26 ms
24,836 KB
testcase_10 AC 26 ms
24,580 KB
testcase_11 AC 27 ms
24,836 KB
testcase_12 AC 29 ms
24,836 KB
testcase_13 AC 33 ms
24,452 KB
testcase_14 AC 34 ms
24,580 KB
testcase_15 AC 110 ms
25,220 KB
testcase_16 AC 46 ms
25,220 KB
testcase_17 AC 66 ms
25,220 KB
testcase_18 AC 70 ms
24,580 KB
testcase_19 AC 132 ms
25,220 KB
testcase_20 AC 222 ms
24,836 KB
testcase_21 AC 234 ms
25,092 KB
testcase_22 AC 330 ms
25,220 KB
testcase_23 AC 358 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
	int N;
	cin >> N;
	vector<int> b;
	for (int i = 0; i < N; i++){
		vector<int> a;
		for (int j = 0; j < N; j++){
			if (i != j){
				a.push_back(j);
			}
		}
		cout << '?' << ' ' << N - 1 << endl;
		for (int j = 0; j < N - 1; j++){
			cout << a[j] + 1;
			if (j < N - 2){
				cout << ' ';
			}
		}
		cout << endl;
		int ans;
		cin >> ans;
		if (ans == 0){
			b.push_back(i);
		}
	}
	int K = b.size();
	cout << '!' << ' ' << K << endl;
	for (int i = 0; i < K; i++){
		cout << b[i] + 1;
		if (i < K - 1){
			cout << ' ';
		}
	}
	cout << endl;
}
0