結果

問題 No.934 Explosive energy drink
ユーザー shop_oneshop_one
提出日時 2019-11-29 22:52:16
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 770 bytes
コンパイル時間 1,093 ms
コンパイル使用メモリ 75,780 KB
実行使用メモリ 25,604 KB
平均クエリ数 1059.33
最終ジャッジ日時 2024-07-16 18:44:07
合計ジャッジ時間 6,182 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 239 ms
25,208 KB
testcase_02 AC 23 ms
24,964 KB
testcase_03 AC 128 ms
24,964 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 23 ms
25,220 KB
testcase_09 AC 22 ms
24,964 KB
testcase_10 AC 23 ms
24,580 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 28 ms
24,836 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 38 ms
24,964 KB
testcase_17 AC 56 ms
24,580 KB
testcase_18 AC 60 ms
24,964 KB
testcase_19 AC 105 ms
24,580 KB
testcase_20 AC 172 ms
25,220 KB
testcase_21 AC 162 ms
24,964 KB
testcase_22 AC 236 ms
24,580 KB
testcase_23 AC 239 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// I SELL YOU...! 
#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<queue>
#include<set>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> P;
signed main(){
  ll n,res;
  cin >> n;
  ll ri,le;
  ri=1;
  set<ll> mzs;
  for(int i=n-1;i>1;i--){
    set<ll> tmp(mzs);
    for(int j=1;j<=i;j++){
      tmp.insert(j);
    }
    cout << "? "<<tmp.size()<<"\n";
    for(auto j:tmp){
      cout << j<<" ";
    }
    cout << endl;
    cin >> res;
    if(res==0) mzs.insert(i+1);
    cout << endl;
  }
  cout <<"? "<<mzs.size()<<"\n";
  for(auto i:mzs){
    cout << i<<" ";
  }
  cout << endl;
  cin >> res;
  if(res==0) mzs.insert(1);
  cout << "! "<<mzs.size()<<"\n";
  for(auto i:mzs){
    cout << i<<" ";
  }
  cout << endl;
}
0