結果

問題 No.934 Explosive energy drink
ユーザー tko919tko919
提出日時 2019-11-30 00:59:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 1,900 ms
コンパイル使用メモリ 165,812 KB
実行使用メモリ 25,604 KB
平均クエリ数 355.79
最終ジャッジ日時 2024-07-16 18:55:17
合計ジャッジ時間 3,157 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,556 KB
testcase_01 AC 347 ms
24,964 KB
testcase_02 AC 28 ms
25,604 KB
testcase_03 AC 176 ms
24,580 KB
testcase_04 AC 352 ms
25,220 KB
testcase_05 AC 29 ms
24,964 KB
testcase_06 AC 27 ms
24,964 KB
testcase_07 AC 27 ms
25,220 KB
testcase_08 AC 27 ms
24,964 KB
testcase_09 AC 28 ms
25,220 KB
testcase_10 AC 28 ms
25,220 KB
testcase_11 AC 28 ms
25,460 KB
testcase_12 AC 30 ms
24,580 KB
testcase_13 AC 33 ms
24,964 KB
testcase_14 AC 34 ms
25,220 KB
testcase_15 AC 115 ms
24,580 KB
testcase_16 AC 46 ms
24,836 KB
testcase_17 AC 68 ms
25,604 KB
testcase_18 AC 69 ms
24,580 KB
testcase_19 AC 135 ms
24,580 KB
testcase_20 AC 224 ms
25,220 KB
testcase_21 AC 246 ms
25,220 KB
testcase_22 AC 342 ms
25,476 KB
testcase_23 AC 347 ms
25,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//template
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(a);i>(b);i--)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll; const int inf = 0x3fffffff; const ll INF = 0x3fffffffffffffff;
template<class T> inline bool chmax(T& a,T b){ if(a<b){a=b;return 1;}return 0; }
template<class T> inline bool chmin(T& a,T b){ if(a>b){a=b;return 1;}return 0; }
//template end



int main(){
    int n; scanf("%d",&n);
    bool expo[1010]={};
    rep(i,0,n){
        printf("? %d\n",n-1);
        rep(j,0,n)if(i!=j)printf("%d ",j+1);
        fflush(stdout);
        int tmp; scanf("%d",&tmp);
        expo[i]=!tmp;
    }
    int cnt=0;
    rep(i,0,n)if(expo[i])cnt++;
    printf("! %d\n",cnt);
    rep(i,0,n)if(expo[i])printf("%d ",i+1);
    fflush(stdout);
    return 0;
}
0