結果

問題 No.934 Explosive energy drink
ユーザー koi_kotyakoi_kotya
提出日時 2019-11-29 21:59:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 1,114 bytes
コンパイル時間 1,621 ms
コンパイル使用メモリ 172,392 KB
実行使用メモリ 25,460 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 18:21:07
合計ジャッジ時間 6,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,556 KB
testcase_01 AC 329 ms
25,220 KB
testcase_02 AC 24 ms
25,220 KB
testcase_03 AC 165 ms
25,220 KB
testcase_04 AC 324 ms
24,964 KB
testcase_05 AC 23 ms
25,208 KB
testcase_06 AC 23 ms
25,220 KB
testcase_07 AC 23 ms
24,964 KB
testcase_08 AC 22 ms
25,220 KB
testcase_09 AC 21 ms
24,580 KB
testcase_10 AC 23 ms
24,964 KB
testcase_11 AC 23 ms
24,964 KB
testcase_12 AC 25 ms
25,220 KB
testcase_13 AC 27 ms
25,460 KB
testcase_14 AC 28 ms
24,580 KB
testcase_15 AC 105 ms
25,208 KB
testcase_16 AC 39 ms
24,964 KB
testcase_17 AC 62 ms
24,964 KB
testcase_18 AC 63 ms
24,836 KB
testcase_19 AC 125 ms
25,220 KB
testcase_20 AC 209 ms
24,580 KB
testcase_21 AC 222 ms
24,964 KB
testcase_22 AC 322 ms
24,580 KB
testcase_23 AC 325 ms
24,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long ll;
typedef pair<int,int> P;

#define p_ary(ary,a,b) do { cout << "["; for (int count = (a);count < (b);++count) cout << ary[count] << ((b)-1 == count ? "" : ", "); cout << "]\n"; } while(0)
#define p_map(map,it) do {cout << "{";for (auto (it) = map.begin();;++(it)) {if ((it) == map.end()) {cout << "}\n";break;}else cout << "" << (it)->first << "=>" << (it)->second << ", ";}}while(0)

int main() {
    int n;
    cin >> n;
    vector<bool> ans(n,false);
    for (int i = 0;i < n;++i) {
        vector<int> q;
        for (int j = 0;j < i;++j) q.push_back(j);
        for (int j = i+1;j < n;++j) q.push_back(j);
        int m = q.size();
        cout << "? "<< m << "\n";
        for (int j = 0;j < m;++j) cout << q[j]+1 << " \n"[j == m-1];
        cout << flush;
        int a;
        cin >> a;
        if (a == 0) ans[i] = true;
    }
    vector<int> b;
    for (int i = 0;i < n;++i) if (ans[i]) b.push_back(i);
    int k = b.size();
    cout << "! " << k << "\n";
    for (int i = 0;i < k;++i) cout << b[i]+1 << " \n"[i == k-1];
    return 0;
}
0