結果

問題 No.1741 Arrays and XOR Procedure
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-12 23:00:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 106,108 KB
最終ジャッジ日時 2024-11-25 21:03:09
合計ジャッジ時間 5,239 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 110 ms
106,108 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 108 ms
105,216 KB
testcase_06 AC 116 ms
105,844 KB
testcase_07 AC 116 ms
105,984 KB
testcase_08 AC 108 ms
105,216 KB
testcase_09 AC 104 ms
102,144 KB
testcase_10 AC 103 ms
102,016 KB
testcase_11 AC 95 ms
96,128 KB
testcase_12 AC 87 ms
91,008 KB
testcase_13 AC 103 ms
101,760 KB
testcase_14 AC 90 ms
93,508 KB
testcase_15 AC 98 ms
98,816 KB
testcase_16 AC 57 ms
71,168 KB
testcase_17 AC 76 ms
83,200 KB
testcase_18 AC 93 ms
93,824 KB
testcase_19 AC 54 ms
69,120 KB
testcase_20 AC 111 ms
105,344 KB
testcase_21 AC 100 ms
98,816 KB
testcase_22 AC 94 ms
95,872 KB
testcase_23 AC 73 ms
81,920 KB
testcase_24 AC 58 ms
73,088 KB
testcase_25 AC 110 ms
105,536 KB
testcase_26 AC 78 ms
86,144 KB
testcase_27 AC 54 ms
68,992 KB
testcase_28 AC 94 ms
95,872 KB
testcase_29 AC 103 ms
98,944 KB
testcase_30 AC 99 ms
95,872 KB
testcase_31 AC 56 ms
69,888 KB
testcase_32 AC 81 ms
86,016 KB
testcase_33 AC 85 ms
89,424 KB
testcase_34 AC 68 ms
79,872 KB
testcase_35 AC 43 ms
58,880 KB
testcase_36 AC 61 ms
76,800 KB
testcase_37 AC 78 ms
85,888 KB
testcase_38 AC 111 ms
105,344 KB
testcase_39 AC 75 ms
84,224 KB
testcase_40 AC 52 ms
64,128 KB
testcase_41 AC 67 ms
79,068 KB
testcase_42 AC 56 ms
70,528 KB
testcase_43 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = list(map(int, input().split()))
MOD = 998244353


def ord2(n):
    i = 0
    while not n % 2:
        i += 1
        n >>= 1
    return i


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

cta = 0
ctb = 0
v = 0
for i in range(N):
    if not comb[i]:
        if B[i] == -1:
            cta += 1
        else:
            v ^= B[i]
    else:
        if B[i] == -1:
            ctb += 1

if v == cta == 0:
    print(0)
else:
    print(pow(2, ctb+max(0, cta-1), MOD))
0