結果

問題 No.934 Explosive energy drink
ユーザー YamaKasaYamaKasa
提出日時 2019-12-03 02:16:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 1,703 ms
コンパイル使用メモリ 167,872 KB
実行使用メモリ 25,220 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 19:00:12
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,196 KB
testcase_01 AC 350 ms
25,208 KB
testcase_02 AC 23 ms
24,964 KB
testcase_03 AC 168 ms
25,220 KB
testcase_04 AC 351 ms
25,220 KB
testcase_05 AC 24 ms
24,580 KB
testcase_06 AC 23 ms
24,836 KB
testcase_07 AC 23 ms
24,836 KB
testcase_08 AC 23 ms
24,580 KB
testcase_09 AC 23 ms
24,836 KB
testcase_10 AC 24 ms
24,964 KB
testcase_11 AC 23 ms
24,836 KB
testcase_12 AC 25 ms
24,580 KB
testcase_13 AC 29 ms
24,568 KB
testcase_14 AC 29 ms
24,964 KB
testcase_15 AC 112 ms
25,220 KB
testcase_16 AC 42 ms
24,964 KB
testcase_17 AC 66 ms
24,964 KB
testcase_18 AC 67 ms
25,220 KB
testcase_19 AC 134 ms
25,216 KB
testcase_20 AC 224 ms
24,836 KB
testcase_21 AC 243 ms
24,964 KB
testcase_22 AC 344 ms
24,964 KB
testcase_23 AC 343 ms
24,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
    int N;
    cin >> N;
    int a[N];
    for (int i = 0; i < N; i++) {
        cout << "? " << N - 1 << "\n";
        int t = 0;
        for (int j = 0; j < N; j++) {
            if (j != i) {
                t++;
                if (t == N - 1) {
                    cout << j + 1 << "\n";
                } else {
                    cout << j + 1 << " ";
                }
            }
        }
        cin >> a[i];
    }
    int b = 0;
    for (int i : a) {
        if (i == 0) b++;
    }
    cout << "! "<< b << "\n";
    int c = 0;
    for (int i = 0; i < N; i++) {
        if (a[i] == 0) {
            c++;
            if (c == b) {
                cout << i + 1 << "\n";
            } else {
                cout << i + 1 << " ";
            }
        }
    }
    return 0;
}
0