結果

問題 No.934 Explosive energy drink
ユーザー karinohitokarinohito
提出日時 2024-09-18 18:47:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,343 bytes
コンパイル時間 2,586 ms
コンパイル使用メモリ 207,596 KB
実行使用メモリ 38,544 KB
最終ジャッジ日時 2024-09-18 18:47:29
合計ジャッジ時間 9,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

#include<atcoder/modint>
using namespace atcoder;
using mint = modint998244353;
vector<mint> fact, factinv, inv;
const ll mod = 998244353;
void prenCkModp(ll n) {
    fact.resize(n + 5);
    factinv.resize(n + 5);
    inv.resize(n + 5);
    fact[0] = fact[1] = 1;
    factinv[0] = factinv[1] = 1;
    inv[1] = 1;
    for (ll i = 2; i < n + 5; i++) {
        fact[i] = (fact[i - 1] * i);
        inv[i] = mod - (inv[mod % i] * (mod / i));
        factinv[i] = (factinv[i - 1] * inv[i]);
    }

}

mint nCk(ll n, ll k) {
    if (n < k||k<0) return 0;
    return fact[n] * (factinv[k] * factinv[n - k]);
}

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int N;
    cin>>N;
    vector<bool> U(N,1);
    int cnt=N;
    for(int i=0;i<N;i++){
        U[i]=0;
        cnt--;
        cout<<"? "<<cnt<<endl;
        int p=0;
        for(int k=0;k<N;k++){
            if(U[k]){
                cout<<k+1<<" \n"[p==cnt-1];
                p++;
            }
        }
        int r;
        cin>>r;
        if(r==0){
            U[i]=1;
            cnt++;
        }
    }
    cout<<"! "<<cnt<<endl;
    int p=0;
        for(int k=0;k<N;k++){
            if(U[k]){
                cout<<k+1<<" \n"[p==cnt-1];
                p++;
            }
        }
    
}
0