結果

問題 No.934 Explosive energy drink
ユーザー rogi52rogi52
提出日時 2022-10-03 01:07:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 204,524 KB
実行使用メモリ 25,476 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-06-07 17:58:17
合計ジャッジ時間 7,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,196 KB
testcase_01 AC 322 ms
25,220 KB
testcase_02 AC 24 ms
25,220 KB
testcase_03 AC 163 ms
24,836 KB
testcase_04 AC 324 ms
24,836 KB
testcase_05 AC 24 ms
25,220 KB
testcase_06 AC 24 ms
24,964 KB
testcase_07 AC 23 ms
24,836 KB
testcase_08 AC 24 ms
25,220 KB
testcase_09 AC 23 ms
24,836 KB
testcase_10 AC 23 ms
24,964 KB
testcase_11 AC 25 ms
25,220 KB
testcase_12 AC 26 ms
25,220 KB
testcase_13 AC 30 ms
24,836 KB
testcase_14 AC 30 ms
24,580 KB
testcase_15 AC 106 ms
25,220 KB
testcase_16 AC 43 ms
25,220 KB
testcase_17 AC 63 ms
24,964 KB
testcase_18 AC 65 ms
24,964 KB
testcase_19 AC 124 ms
24,964 KB
testcase_20 AC 212 ms
24,964 KB
testcase_21 AC 226 ms
24,836 KB
testcase_22 AC 320 ms
25,476 KB
testcase_23 AC 325 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(0);
    
    int N; cin >> N;
    vector<int> b;
    rep(i,N) {
        cout << "?" << " " << N - 1 << endl;
        rep(j,N) if(j != i) cout << j + 1 << " ";
        cout << endl;
        cout.flush();
        int ans; cin >> ans;
        if(ans == 0) b.push_back(i + 1);
    }

    cout << "!" << " " << b.size() << endl;
    for(int x : b) cout << x << " "; cout << endl;
    cout.flush();
}
0