結果

問題 No.1741 Arrays and XOR Procedure
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-12 23:00:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 105,988 KB
最終ジャッジ日時 2024-05-04 10:39:58
合計ジャッジ時間 4,449 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,252 KB
testcase_01 AC 31 ms
53,008 KB
testcase_02 AC 33 ms
52,272 KB
testcase_03 AC 99 ms
105,988 KB
testcase_04 AC 34 ms
52,340 KB
testcase_05 AC 93 ms
105,296 KB
testcase_06 AC 102 ms
105,608 KB
testcase_07 AC 99 ms
105,664 KB
testcase_08 AC 92 ms
105,584 KB
testcase_09 AC 93 ms
102,000 KB
testcase_10 AC 92 ms
102,084 KB
testcase_11 AC 89 ms
95,884 KB
testcase_12 AC 80 ms
91,108 KB
testcase_13 AC 93 ms
101,852 KB
testcase_14 AC 83 ms
93,660 KB
testcase_15 AC 88 ms
99,128 KB
testcase_16 AC 49 ms
72,472 KB
testcase_17 AC 67 ms
83,524 KB
testcase_18 AC 83 ms
93,652 KB
testcase_19 AC 47 ms
69,496 KB
testcase_20 AC 96 ms
105,480 KB
testcase_21 AC 87 ms
98,668 KB
testcase_22 AC 81 ms
95,860 KB
testcase_23 AC 62 ms
82,096 KB
testcase_24 AC 48 ms
73,372 KB
testcase_25 AC 94 ms
105,568 KB
testcase_26 AC 67 ms
86,060 KB
testcase_27 AC 49 ms
70,532 KB
testcase_28 AC 82 ms
96,148 KB
testcase_29 AC 89 ms
99,064 KB
testcase_30 AC 84 ms
96,048 KB
testcase_31 AC 48 ms
70,440 KB
testcase_32 AC 68 ms
86,012 KB
testcase_33 AC 70 ms
89,376 KB
testcase_34 AC 56 ms
79,772 KB
testcase_35 AC 37 ms
60,488 KB
testcase_36 AC 52 ms
76,488 KB
testcase_37 AC 69 ms
86,112 KB
testcase_38 AC 96 ms
105,612 KB
testcase_39 AC 68 ms
84,716 KB
testcase_40 AC 45 ms
66,184 KB
testcase_41 AC 60 ms
79,128 KB
testcase_42 AC 51 ms
70,708 KB
testcase_43 AC 35 ms
52,612 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