結果

問題 No.1741 Arrays and XOR Procedure
ユーザー H3PO4H3PO4
提出日時 2021-11-12 22:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 1,054 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 101,476 KB
最終ジャッジ日時 2024-11-25 19:51:41
合計ジャッジ時間 5,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,288 KB
testcase_01 AC 44 ms
61,656 KB
testcase_02 AC 44 ms
60,980 KB
testcase_03 AC 101 ms
101,476 KB
testcase_04 AC 43 ms
61,348 KB
testcase_05 AC 103 ms
101,004 KB
testcase_06 AC 112 ms
101,248 KB
testcase_07 AC 114 ms
101,220 KB
testcase_08 AC 100 ms
100,952 KB
testcase_09 AC 105 ms
98,316 KB
testcase_10 AC 103 ms
98,472 KB
testcase_11 AC 100 ms
93,692 KB
testcase_12 AC 87 ms
90,164 KB
testcase_13 AC 99 ms
97,820 KB
testcase_14 AC 99 ms
92,092 KB
testcase_15 AC 99 ms
96,028 KB
testcase_16 AC 62 ms
74,612 KB
testcase_17 AC 77 ms
84,712 KB
testcase_18 AC 92 ms
92,268 KB
testcase_19 AC 56 ms
72,684 KB
testcase_20 AC 105 ms
100,740 KB
testcase_21 AC 91 ms
95,588 KB
testcase_22 AC 86 ms
93,488 KB
testcase_23 AC 72 ms
83,708 KB
testcase_24 AC 59 ms
76,880 KB
testcase_25 AC 105 ms
100,760 KB
testcase_26 AC 82 ms
86,376 KB
testcase_27 AC 60 ms
72,456 KB
testcase_28 AC 93 ms
93,876 KB
testcase_29 AC 100 ms
96,060 KB
testcase_30 AC 97 ms
93,956 KB
testcase_31 AC 61 ms
73,380 KB
testcase_32 AC 81 ms
86,400 KB
testcase_33 AC 81 ms
88,776 KB
testcase_34 AC 69 ms
81,976 KB
testcase_35 AC 51 ms
63,472 KB
testcase_36 AC 68 ms
79,644 KB
testcase_37 AC 79 ms
86,472 KB
testcase_38 AC 101 ms
100,420 KB
testcase_39 AC 81 ms
85,084 KB
testcase_40 AC 56 ms
69,220 KB
testcase_41 AC 70 ms
81,508 KB
testcase_42 AC 59 ms
74,236 KB
testcase_43 AC 43 ms
61,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = map(int, input().split())
MOD = 998244353
MAX = 2 * 10 ** 5 + 10
# https://tjkendev.github.io/procon-library/python/math/factorial.html から拝借しています。
fact = [1] * (MAX + 1)
rfact = [1] * (MAX + 1)
r = 1
for i in range(1, MAX + 1):
    fact[i] = r = r * i % MOD
rfact[MAX] = r = pow(fact[MAX], MOD - 2, MOD)
for i in range(MAX, 0, -1):
    rfact[i - 1] = r = r * i % MOD


def comb(n, k, error=0):
    if not 0 <= k <= n:
        return error
    return fact[n] * rfact[k] * rfact[n - k] % MOD


def p2(x):
    res = 0
    while not x % 2:
        x //= 2
        res += 1
    return res


comb2 = [0] * N
for i in range(1, N):
    comb2[i] = comb2[i - 1] + p2(N - i) - p2(i)

cur = 0
ct_odd = 0
ct_even = 0
for b, c in zip(B, comb2):
    if b == -1:
        if c:
            ct_even += 1
        else:
            ct_odd += 1
        continue
    if not c:
        cur ^= b

ans = 0
for x in range(1 - cur, ct_odd + 1, 2):
    ans += comb(ct_odd, x)
    ans %= MOD
ans *= pow(2, ct_even, MOD)
ans %= MOD
print(ans)
0