結果

問題 No.934 Explosive energy drink
ユーザー season1618season1618
提出日時 2019-11-29 22:07:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 583 bytes
コンパイル時間 1,643 ms
コンパイル使用メモリ 169,516 KB
実行使用メモリ 25,220 KB
平均クエリ数 709.50
最終ジャッジ日時 2024-07-16 18:25:21
合計ジャッジ時間 6,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,812 KB
testcase_01 AC 330 ms
24,964 KB
testcase_02 AC 21 ms
24,580 KB
testcase_03 AC 162 ms
25,220 KB
testcase_04 AC 330 ms
25,220 KB
testcase_05 AC 22 ms
24,580 KB
testcase_06 AC 20 ms
24,952 KB
testcase_07 AC 21 ms
24,580 KB
testcase_08 RE -
testcase_09 AC 22 ms
24,580 KB
testcase_10 AC 21 ms
24,964 KB
testcase_11 AC 23 ms
25,220 KB
testcase_12 AC 24 ms
24,836 KB
testcase_13 AC 28 ms
25,220 KB
testcase_14 AC 29 ms
25,220 KB
testcase_15 AC 104 ms
24,964 KB
testcase_16 AC 40 ms
24,964 KB
testcase_17 AC 62 ms
24,836 KB
testcase_18 AC 65 ms
25,220 KB
testcase_19 AC 129 ms
24,580 KB
testcase_20 RE -
testcase_21 AC 236 ms
25,204 KB
testcase_22 AC 328 ms
25,220 KB
testcase_23 AC 331 ms
24,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,x,y) for(int i=x;i<y;i++)
#define range(a) (a).begin(),(a).end()
#define print(A,n) rep(i,0,n){cout<<(i ? " ":"")<<A[i];}cout<<endl;
#define pprint(A,m,n) rep(j,0,m){print(A[j],n);}
const int mod=1e5;
const int size=1e5;
const long inf=1e9;
int main(){
	int N;cin>>N;
	vector<int> ans;int K=0;
	int query[N-1];int a;
	rep(i,0,N-1) query[i]=i+2;
	rep(i,1,N+1){
		cout<<"? "<<N-1<<endl;
		print(query,N-1);
        query[i-1]--;
		cin>>a;
		if(a==0){ ans.push_back(i); K++; }
	}
	cout<<"! "<<K<<endl;
	print(ans,ans.size());
}
0