結果

問題 No.1741 Arrays and XOR Procedure
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-21 10:22:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,404 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 119,980 KB
最終ジャッジ日時 2024-05-03 22:49:46
合計ジャッジ時間 7,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
90,744 KB
testcase_01 AC 69 ms
90,916 KB
testcase_02 AC 71 ms
90,552 KB
testcase_03 AC 354 ms
119,980 KB
testcase_04 AC 69 ms
90,880 KB
testcase_05 AC 104 ms
119,552 KB
testcase_06 AC 236 ms
119,704 KB
testcase_07 AC 237 ms
119,848 KB
testcase_08 AC 105 ms
119,552 KB
testcase_09 AC 179 ms
116,284 KB
testcase_10 AC 183 ms
116,192 KB
testcase_11 AC 161 ms
110,388 KB
testcase_12 AC 141 ms
105,960 KB
testcase_13 AC 175 ms
116,320 KB
testcase_14 AC 153 ms
107,960 KB
testcase_15 AC 170 ms
113,548 KB
testcase_16 AC 84 ms
91,520 KB
testcase_17 AC 112 ms
98,656 KB
testcase_18 AC 153 ms
108,356 KB
testcase_19 AC 82 ms
91,348 KB
testcase_20 AC 190 ms
119,668 KB
testcase_21 AC 165 ms
113,296 KB
testcase_22 AC 155 ms
110,464 KB
testcase_23 AC 106 ms
97,152 KB
testcase_24 AC 86 ms
91,424 KB
testcase_25 AC 189 ms
119,768 KB
testcase_26 AC 124 ms
101,316 KB
testcase_27 AC 86 ms
91,648 KB
testcase_28 AC 160 ms
110,912 KB
testcase_29 AC 173 ms
113,420 KB
testcase_30 AC 165 ms
110,540 KB
testcase_31 WA -
testcase_32 AC 123 ms
101,376 KB
testcase_33 AC 134 ms
104,408 KB
testcase_34 AC 99 ms
95,012 KB
testcase_35 WA -
testcase_36 AC 85 ms
91,500 KB
testcase_37 AC 121 ms
101,152 KB
testcase_38 AC 192 ms
119,508 KB
testcase_39 AC 125 ms
99,740 KB
testcase_40 AC 79 ms
91,904 KB
testcase_41 AC 105 ms
94,592 KB
testcase_42 AC 85 ms
91,448 KB
testcase_43 AC 70 ms
90,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = 10**6
mod = 998244353
fac = [1]*(N+1)
finv = [1]*(N+1)
for i in range(N):
    fac[i+1] = fac[i] * (i+1) % mod
finv[-1] = pow(fac[-1], mod-2, mod)
for i in reversed(range(N)):
    finv[i] = finv[i+1] * (i+1) % mod

def cmb1(n, r, mod):
    if r <0 or r > n:
        return 0
    r = min(r, n-r)
    return fac[n] * finv[r] * finv[n-r] % mod

p = 2
C = [[0]*(p+1) for i in range(p+1)] #C[n][k] > nCk

for i in range(p+1):
    for j in range(i+1):
        if j == 0 or j == i:
            C[i][j] = 1
        else:
            C[i][j] = C[i-1][j-1]+C[i-1][j]

def cmb2(n, k, p):
    ret = 1
    while n > 0:
        ni = n%p
        ki = k%p
        ret *= C[ni][ki]
        ret %= p
        n //= p
        k //= p
    return ret

n = int(input())
B = list(map(int, input().split()))

x = 0
o = 0
e = 0
for i, b in enumerate(B):
    if b != -1:
        if i == 0 or i == n-1:
            x ^= b
        else:
            if (n-1)%2 == 0:
                continue
            else:
                x ^= b
    else:
        if cmb2(n-1, i, 2)%2 == 1:
            o += 1
        else:
            e += 1

ans = 0
if x == 0:
    for k in range(o+1):
        if k%2 == 0:
            continue
        ans += cmb1(o, k, mod)*pow(2, e, mod)
        ans %= mod
else:
    for k in range(o+1):
        if k%2 == 1:
            continue
        ans += cmb1(o, k, mod)*pow(2, e, mod)
        ans %= mod
print(ans)
0