結果

問題 No.934 Explosive energy drink
ユーザー kk
提出日時 2020-07-27 21:05:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 2,012 ms
コンパイル使用メモリ 197,128 KB
最終ジャッジ日時 2025-01-12 06:59:11
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
25,960 KB
testcase_01 AC 364 ms
25,588 KB
testcase_02 AC 28 ms
25,064 KB
testcase_03 AC 179 ms
25,972 KB
testcase_04 AC 360 ms
25,460 KB
testcase_05 AC 28 ms
26,228 KB
testcase_06 AC 25 ms
25,588 KB
testcase_07 AC 26 ms
25,972 KB
testcase_08 AC 27 ms
26,356 KB
testcase_09 AC 25 ms
26,228 KB
testcase_10 AC 26 ms
25,588 KB
testcase_11 AC 26 ms
25,960 KB
testcase_12 AC 28 ms
25,972 KB
testcase_13 AC 32 ms
25,588 KB
testcase_14 AC 33 ms
25,972 KB
testcase_15 AC 119 ms
25,960 KB
testcase_16 AC 46 ms
26,284 KB
testcase_17 AC 72 ms
26,200 KB
testcase_18 AC 71 ms
25,588 KB
testcase_19 AC 139 ms
26,228 KB
testcase_20 AC 241 ms
25,076 KB
testcase_21 AC 252 ms
25,960 KB
testcase_22 AC 354 ms
25,460 KB
testcase_23 AC 360 ms
25,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);

int ask(int x, int n) {
  cout << "? " << (n-1) << endl;
  REP (i, n) {
    if (i != x)
      cout << i+1 << " ";
  }
  cout << endl;
  cout.flush();
  int r;
  cin >> r;
  return r;
}

void answer(const vector<int> &v) {
  cout << "! " << v.size() << endl;
  for (auto x: v)
    cout << x+1 << " ";
  cout << endl;
  cout.flush();
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int n;
  cin >> n;

  vector<int> needed(n);

  REP (i, n)
    needed[i] = !ask(i, n);

  vector<int> ret;
  REP (i, n) if (needed[i]) ret.push_back(i);
  answer(ret);
  
  return 0;
}
0