結果

問題 No.1741 Arrays and XOR Procedure
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-21 10:24:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 1,299 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 120,044 KB
最終ジャッジ日時 2024-05-03 22:52:08
合計ジャッジ時間 10,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
90,752 KB
testcase_01 AC 73 ms
90,752 KB
testcase_02 AC 72 ms
91,008 KB
testcase_03 AC 365 ms
120,044 KB
testcase_04 AC 73 ms
90,624 KB
testcase_05 AC 346 ms
119,496 KB
testcase_06 AC 359 ms
120,004 KB
testcase_07 AC 367 ms
119,864 KB
testcase_08 AC 352 ms
119,896 KB
testcase_09 AC 321 ms
116,324 KB
testcase_10 AC 328 ms
116,352 KB
testcase_11 AC 276 ms
110,712 KB
testcase_12 AC 230 ms
105,984 KB
testcase_13 AC 316 ms
116,096 KB
testcase_14 AC 247 ms
108,160 KB
testcase_15 AC 301 ms
113,656 KB
testcase_16 AC 91 ms
91,520 KB
testcase_17 AC 156 ms
98,528 KB
testcase_18 AC 258 ms
108,416 KB
testcase_19 AC 94 ms
91,664 KB
testcase_20 AC 353 ms
119,680 KB
testcase_21 AC 287 ms
113,280 KB
testcase_22 AC 266 ms
110,428 KB
testcase_23 AC 150 ms
97,120 KB
testcase_24 AC 97 ms
91,904 KB
testcase_25 AC 347 ms
119,720 KB
testcase_26 AC 189 ms
100,964 KB
testcase_27 AC 90 ms
91,780 KB
testcase_28 AC 276 ms
110,768 KB
testcase_29 AC 305 ms
113,408 KB
testcase_30 AC 272 ms
110,592 KB
testcase_31 AC 91 ms
91,776 KB
testcase_32 AC 184 ms
101,516 KB
testcase_33 AC 209 ms
104,300 KB
testcase_34 AC 129 ms
95,028 KB
testcase_35 AC 77 ms
90,796 KB
testcase_36 AC 100 ms
92,032 KB
testcase_37 AC 182 ms
100,992 KB
testcase_38 AC 343 ms
119,736 KB
testcase_39 AC 174 ms
99,756 KB
testcase_40 AC 87 ms
91,440 KB
testcase_41 AC 128 ms
94,464 KB
testcase_42 AC 94 ms
91,756 KB
testcase_43 AC 72 ms
90,936 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 cmb2(n-1, i, 2)%2 == 1:
            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