結果

問題 No.1741 Arrays and XOR Procedure
ユーザー hourenhouren
提出日時 2021-11-12 23:03:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,544 bytes
コンパイル時間 1,472 ms
コンパイル使用メモリ 172,096 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-05-04 10:44:14
合計ジャッジ時間 3,682 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
7,936 KB
testcase_01 AC 8 ms
8,064 KB
testcase_02 AC 8 ms
7,936 KB
testcase_03 WA -
testcase_04 AC 9 ms
8,064 KB
testcase_05 AC 41 ms
8,704 KB
testcase_06 WA -
testcase_07 AC 41 ms
8,704 KB
testcase_08 AC 36 ms
8,704 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 26 ms
8,448 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 34 ms
8,704 KB
testcase_16 AC 10 ms
7,936 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 10 ms
7,936 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 31 ms
8,576 KB
testcase_23 AC 18 ms
8,192 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 21 ms
8,192 KB
testcase_27 AC 9 ms
8,064 KB
testcase_28 AC 31 ms
8,448 KB
testcase_29 WA -
testcase_30 AC 30 ms
8,576 KB
testcase_31 AC 10 ms
8,064 KB
testcase_32 WA -
testcase_33 AC 24 ms
8,448 KB
testcase_34 AC 13 ms
8,192 KB
testcase_35 AC 9 ms
8,064 KB
testcase_36 AC 11 ms
8,064 KB
testcase_37 AC 21 ms
8,320 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 8 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll MOD = 998244353;
using P = pair<int,int>;
#define rep(i, n) for(int i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
const int MAX_N = 200200;
vector<ll> fac(MAX_N), finv(MAX_N), inv(MAX_N);
void mcomin(){
    fac[0] = fac[1] = 1;
    finv[0] = finv[1] = 1;
    inv[1] = 1;
    for(int i=2;i<MAX_N;i++){
        fac[i] = fac[i-1] * i % MOD;
        inv[i] = MOD - inv[MOD%i] * (MOD/i) % MOD;
        finv[i] = finv[i-1] * inv[i] % MOD;
    }
}
ll mcomb(int n,int k){
    if (n<k) return 0;
    if (n<0 || k<0) return 0;
    return fac[n] * (finv[k] * finv[n-k] % MOD) % MOD;
}
ll mpow(ll x, ll y){
    ll res = 1; x %= MOD;
    while(y){
        if(y%2) res = res * x % MOD;
        x = x * x % MOD;
        y /= 2;
    }
    return res;
}
int main(){
    mcomin();
    int n;
    cin >> n;
    vector<int> b(n);
    rep(i,n) cin >> b[i];
    ll even = 0, num1 = 0, num0 = 0, p = n, q = 0, k = 0;
    rep(i,n){
        if(q){
            ll pp = p, qq = q;
            while(!(pp%2)){
                pp /= 2;
                even++;
            }
            while(!(qq%2)){
                qq /= 2;
                even--;
            }
        }
        if(b[i] == -1){
            if(even) num0++;
            else num1++;
        }else if(b[i] == 1 && !even) k = k^1;
        p--; q++;
    }
    ll ans = 0;
    for(ll i=(k==0);i<=num1;i+=2){
        ans += mcomb(num1,i);
    }
    ans = ans * mpow(2,num0) % MOD;
    cout << ans << endl;
    return 0;
}
0