結果

問題 No.934 Explosive energy drink
ユーザー mamekinmamekin
提出日時 2019-11-30 12:39:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 1,348 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 118,840 KB
実行使用メモリ 25,476 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 18:57:23
合計ジャッジ時間 5,543 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,196 KB
testcase_01 AC 307 ms
24,964 KB
testcase_02 AC 21 ms
24,824 KB
testcase_03 AC 162 ms
24,836 KB
testcase_04 AC 306 ms
24,964 KB
testcase_05 AC 22 ms
25,476 KB
testcase_06 AC 21 ms
24,580 KB
testcase_07 AC 21 ms
25,220 KB
testcase_08 AC 20 ms
25,220 KB
testcase_09 AC 21 ms
24,580 KB
testcase_10 AC 22 ms
24,836 KB
testcase_11 AC 22 ms
24,964 KB
testcase_12 AC 27 ms
24,836 KB
testcase_13 AC 28 ms
24,580 KB
testcase_14 AC 27 ms
24,836 KB
testcase_15 AC 99 ms
24,964 KB
testcase_16 AC 37 ms
24,580 KB
testcase_17 AC 61 ms
24,580 KB
testcase_18 AC 60 ms
24,580 KB
testcase_19 AC 120 ms
24,964 KB
testcase_20 AC 204 ms
24,836 KB
testcase_21 AC 217 ms
24,964 KB
testcase_22 AC 303 ms
24,964 KB
testcase_23 AC 318 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <complex>
#include <string>
#include <vector>
#include <array>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
#include <iterator>
#include <memory>
#include <regex>
using namespace std;

int main()
{
    int n;
    cin >> n;

    vector<bool> ans(n);
    for(int i=0; i<n; ++i){
        cout << "? " << (n-1) << endl;
        bool isFirst = true;
        for(int j=0; j<n; ++j){
            if(i == j)
                continue;
            if(isFirst)
                isFirst = false;
            else
                cout << ' ';
            cout << (j+1);
        }
        cout << endl;

        int res;
        cin >> res;
        ans[i] = !(bool)res;
    }

    int cnt = 0;
    for(int i=0; i<n; ++i){
        if(ans[i])
            ++ cnt;
    }
    cout << "! " << cnt << endl;
    bool isFirst = true;
    for(int i=0; i<n; ++i){
        if(!ans[i])
            continue;
        if(isFirst)
            isFirst = false;
        else
            cout << ' ';
        cout << (i+1);
    }
    cout << endl;

    return 0;
}
0