結果

問題 No.1741 Arrays and XOR Procedure
ユーザー 👑 rin204rin204
提出日時 2022-01-23 07:59:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 558 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-11-29 03:02:50
合計ジャッジ時間 5,279 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,940 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 94 ms
101,888 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 94 ms
100,608 KB
testcase_06 AC 103 ms
102,400 KB
testcase_07 AC 98 ms
102,400 KB
testcase_08 AC 92 ms
100,480 KB
testcase_09 AC 90 ms
98,048 KB
testcase_10 AC 88 ms
97,152 KB
testcase_11 AC 85 ms
90,880 KB
testcase_12 AC 80 ms
86,656 KB
testcase_13 AC 89 ms
96,896 KB
testcase_14 AC 82 ms
87,808 KB
testcase_15 AC 85 ms
93,184 KB
testcase_16 AC 54 ms
64,640 KB
testcase_17 AC 66 ms
74,112 KB
testcase_18 AC 83 ms
87,936 KB
testcase_19 AC 53 ms
64,000 KB
testcase_20 AC 93 ms
101,376 KB
testcase_21 AC 85 ms
92,416 KB
testcase_22 AC 84 ms
90,880 KB
testcase_23 AC 67 ms
74,624 KB
testcase_24 AC 61 ms
67,200 KB
testcase_25 AC 93 ms
100,992 KB
testcase_26 AC 69 ms
77,312 KB
testcase_27 AC 55 ms
65,536 KB
testcase_28 AC 86 ms
91,392 KB
testcase_29 AC 87 ms
93,696 KB
testcase_30 AC 85 ms
90,240 KB
testcase_31 AC 53 ms
64,256 KB
testcase_32 AC 73 ms
80,384 KB
testcase_33 AC 73 ms
83,200 KB
testcase_34 AC 65 ms
71,040 KB
testcase_35 AC 40 ms
52,864 KB
testcase_36 AC 55 ms
65,920 KB
testcase_37 AC 68 ms
77,440 KB
testcase_38 AC 102 ms
103,680 KB
testcase_39 AC 69 ms
77,952 KB
testcase_40 AC 52 ms
62,720 KB
testcase_41 AC 62 ms
70,400 KB
testcase_42 AC 60 ms
65,920 KB
testcase_43 AC 39 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
B = list(map(int, input().split()))
bi = 0
x = 0
odd = 0
even = 0
for i in range(n):
    if B[i] == -1:
        if bi == 0:
            odd += 1
        else:
            even += 1
    else:
        if bi == 0:
            x ^= B[i]
    if i == n - 1:
        break
    y = n - i - 1
    while y % 2 == 0:
        y //= 2
        bi += 1
    y = i + 1
    while y % 2 == 0:
        y //= 2
        bi -= 1

if odd > 0:
    print(pow(2, odd + even - 1, MOD))
elif x == 0:
    print(0)
else:
    print(pow(2, even, MOD))

    
0