結果

問題 No.934 Explosive energy drink
ユーザー chocoruskchocorusk
提出日時 2019-11-29 21:52:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 899 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 113,340 KB
実行使用メモリ 25,716 KB
平均クエリ数 709.50
最終ジャッジ日時 2024-07-16 18:17:43
合計ジャッジ時間 5,870 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 190 ms
24,580 KB
testcase_02 AC 22 ms
24,964 KB
testcase_03 AC 104 ms
24,964 KB
testcase_04 AC 326 ms
24,836 KB
testcase_05 AC 23 ms
25,476 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 22 ms
24,868 KB
testcase_10 AC 22 ms
25,220 KB
testcase_11 AC 21 ms
24,964 KB
testcase_12 AC 24 ms
25,208 KB
testcase_13 AC 25 ms
25,716 KB
testcase_14 AC 27 ms
24,836 KB
testcase_15 AC 108 ms
24,580 KB
testcase_16 AC 33 ms
24,836 KB
testcase_17 AC 49 ms
24,964 KB
testcase_18 AC 52 ms
25,204 KB
testcase_19 AC 82 ms
24,580 KB
testcase_20 AC 141 ms
25,220 KB
testcase_21 AC 136 ms
24,964 KB
testcase_22 AC 191 ms
24,580 KB
testcase_23 AC 193 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
	int n;
	cin>>n;
	vector<int> ans;
	for(int i=2; i<=n+1; i++){
		int m=ans.size()+n-i+1;
		cout<<"? "<<m<<"\n";
		for(auto x:ans) cout<<x<<" ";
		for(int j=i; j<=n; j++) cout<<j<<" ";
		cout<<endl;
		int r;
		cin>>r;
		if(r==0) ans.push_back(i-1);
	}
	cout<<"! "<<ans.size()<<"\n";
	for(auto x:ans){
		cout<<x<<" ";
	}
	cout<<endl;

	return 0;
}
0