結果

問題 No.934 Explosive energy drink
ユーザー ecto0310ecto0310
提出日時 2019-11-29 23:13:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 1,592 ms
コンパイル使用メモリ 168,380 KB
実行使用メモリ 25,220 KB
平均クエリ数 709.50
最終ジャッジ日時 2024-07-16 18:48:34
合計ジャッジ時間 6,304 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 200 ms
25,220 KB
testcase_02 AC 22 ms
25,220 KB
testcase_03 AC 108 ms
24,580 KB
testcase_04 AC 342 ms
24,836 KB
testcase_05 AC 23 ms
24,580 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 23 ms
25,220 KB
testcase_10 AC 22 ms
24,964 KB
testcase_11 AC 23 ms
24,964 KB
testcase_12 AC 23 ms
24,836 KB
testcase_13 AC 26 ms
25,220 KB
testcase_14 AC 28 ms
24,580 KB
testcase_15 AC 107 ms
25,220 KB
testcase_16 AC 34 ms
25,220 KB
testcase_17 AC 46 ms
25,220 KB
testcase_18 AC 54 ms
24,964 KB
testcase_19 AC 84 ms
24,836 KB
testcase_20 AC 134 ms
24,580 KB
testcase_21 AC 135 ms
24,836 KB
testcase_22 AC 195 ms
24,580 KB
testcase_23 AC 203 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;

int main()
{
  i64 n;
  cin >> n;
  i64 cnt = n;
  vector<bool> use(n, true);
  for (i64 i = 0; i < n; i++)
  {
    use[i] = false;
    cnt--;
    cout << "? " << cnt << "\n";
    for (i64 j = 0; j < n; j++)
      if (use[j])
        cout << j + 1 << " ";
    cout << endl;
    i64 r;
    cin >> r;
    if (r == 0)
    {
      use[i] = true;
      cnt++;
    }
  }
  cout << "! " << cnt << "\n";
  for (i64 j = 0; j < n; j++)
    if (use[j])
      cout << j + 1 << " ";
  cout << endl;
  return 0;
}
0