結果

問題 No.1741 Arrays and XOR Procedure
ユーザー rlangevinrlangevin
提出日時 2023-07-06 12:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 100,096 KB
最終ジャッジ日時 2024-07-20 07:43:28
合計ジャッジ時間 5,147 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,328 KB
testcase_03 AC 91 ms
98,688 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 91 ms
97,920 KB
testcase_06 AC 96 ms
100,096 KB
testcase_07 AC 96 ms
99,456 KB
testcase_08 AC 87 ms
97,664 KB
testcase_09 AC 85 ms
92,800 KB
testcase_10 AC 85 ms
93,184 KB
testcase_11 AC 81 ms
87,936 KB
testcase_12 AC 73 ms
81,280 KB
testcase_13 AC 85 ms
93,696 KB
testcase_14 AC 79 ms
86,016 KB
testcase_15 AC 72 ms
89,856 KB
testcase_16 AC 51 ms
61,312 KB
testcase_17 AC 58 ms
72,064 KB
testcase_18 AC 70 ms
85,632 KB
testcase_19 AC 45 ms
61,696 KB
testcase_20 AC 84 ms
98,432 KB
testcase_21 AC 72 ms
89,728 KB
testcase_22 AC 72 ms
85,888 KB
testcase_23 AC 59 ms
70,656 KB
testcase_24 AC 49 ms
62,336 KB
testcase_25 AC 90 ms
97,792 KB
testcase_26 AC 66 ms
74,368 KB
testcase_27 AC 51 ms
60,544 KB
testcase_28 AC 78 ms
86,144 KB
testcase_29 AC 85 ms
91,520 KB
testcase_30 AC 81 ms
87,296 KB
testcase_31 AC 51 ms
60,928 KB
testcase_32 AC 68 ms
75,520 KB
testcase_33 AC 70 ms
78,464 KB
testcase_34 AC 57 ms
67,072 KB
testcase_35 AC 42 ms
51,840 KB
testcase_36 AC 52 ms
62,080 KB
testcase_37 AC 67 ms
74,368 KB
testcase_38 AC 95 ms
99,072 KB
testcase_39 AC 70 ms
74,880 KB
testcase_40 AC 50 ms
59,392 KB
testcase_41 AC 62 ms
67,840 KB
testcase_42 AC 57 ms
63,360 KB
testcase_43 AC 42 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
B = list(map(int, input().split()))
mod = 998244353
odd, even, zero_or_one = 0, 0, 0
for i in range(N):
    if (N - 1) & i == i:
        if B[i] == -1:
            odd += 1
        elif B[i] == 1:
            zero_or_one ^= 1
    else:
        if B[i] == -1:
            even += 1

if odd:
    print(pow(2, even + odd - 1, mod))
else:
    if zero_or_one:
        print(pow(2, even, mod))
    else:
        print(0)
0