結果

問題 No.934 Explosive energy drink
ユーザー auauaauaua
提出日時 2019-11-29 22:14:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 1,805 ms
コンパイル使用メモリ 162,480 KB
実行使用メモリ 25,220 KB
平均クエリ数 709.58
最終ジャッジ日時 2024-07-16 18:29:48
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
24,796 KB
testcase_01 AC 338 ms
24,836 KB
testcase_02 AC 21 ms
24,836 KB
testcase_03 AC 169 ms
25,220 KB
testcase_04 AC 327 ms
25,220 KB
testcase_05 AC 22 ms
24,964 KB
testcase_06 AC 20 ms
24,964 KB
testcase_07 AC 20 ms
24,580 KB
testcase_08 AC 22 ms
24,580 KB
testcase_09 AC 22 ms
24,964 KB
testcase_10 AC 21 ms
25,220 KB
testcase_11 AC 22 ms
24,580 KB
testcase_12 AC 25 ms
24,580 KB
testcase_13 AC 27 ms
24,964 KB
testcase_14 AC 29 ms
24,836 KB
testcase_15 AC 107 ms
24,836 KB
testcase_16 AC 42 ms
24,964 KB
testcase_17 AC 63 ms
25,220 KB
testcase_18 AC 65 ms
24,964 KB
testcase_19 AC 127 ms
24,912 KB
testcase_20 AC 218 ms
24,964 KB
testcase_21 AC 230 ms
24,836 KB
testcase_22 AC 325 ms
24,836 KB
testcase_23 AC 340 ms
24,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end() 
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
const int inf=1e9+7;
int main(){
    ll n;cin>>n;
    vector<ll>ans(0);
    ll a;
    rep(i,n){
        cout<<'?'<<' '<<n-1<<endl;
        rep(j,n){
            if(i!=j)cout<<j+1<<' ';
        }
        cin>>a;
        if(!a)ans.pb(i+1);
        cout<<endl;
    }
    cout<<'!'<<' '<<ans.size()<<endl;
    rep(i,ans.size()){
        cout<<ans[i]<<' ';
    }
    cout<<endl;
}
0