結果

問題 No.1741 Arrays and XOR Procedure
ユーザー rlangevinrlangevin
提出日時 2023-07-06 12:42:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,932 KB
最終ジャッジ日時 2024-07-20 07:56:16
合計ジャッジ時間 5,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 154 ms
23,932 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 135 ms
14,016 KB
testcase_06 AC 154 ms
19,220 KB
testcase_07 AC 153 ms
19,096 KB
testcase_08 AC 134 ms
13,892 KB
testcase_09 AC 135 ms
16,268 KB
testcase_10 AC 143 ms
16,524 KB
testcase_11 AC 112 ms
15,260 KB
testcase_12 AC 99 ms
14,316 KB
testcase_13 AC 132 ms
16,136 KB
testcase_14 AC 105 ms
14,716 KB
testcase_15 AC 124 ms
15,888 KB
testcase_16 AC 37 ms
11,008 KB
testcase_17 AC 66 ms
12,544 KB
testcase_18 AC 108 ms
14,888 KB
testcase_19 AC 35 ms
11,008 KB
testcase_20 AC 147 ms
17,392 KB
testcase_21 AC 122 ms
15,568 KB
testcase_22 AC 110 ms
15,208 KB
testcase_23 AC 63 ms
12,416 KB
testcase_24 AC 38 ms
11,136 KB
testcase_25 AC 146 ms
17,220 KB
testcase_26 AC 79 ms
13,240 KB
testcase_27 AC 35 ms
11,008 KB
testcase_28 AC 118 ms
15,232 KB
testcase_29 AC 129 ms
16,064 KB
testcase_30 AC 117 ms
15,300 KB
testcase_31 AC 35 ms
11,008 KB
testcase_32 AC 79 ms
13,240 KB
testcase_33 AC 94 ms
14,076 KB
testcase_34 AC 52 ms
11,776 KB
testcase_35 AC 32 ms
10,752 KB
testcase_36 AC 41 ms
11,264 KB
testcase_37 AC 75 ms
13,120 KB
testcase_38 AC 143 ms
17,264 KB
testcase_39 AC 75 ms
12,800 KB
testcase_40 AC 31 ms
10,752 KB
testcase_41 AC 53 ms
11,776 KB
testcase_42 AC 36 ms
11,008 KB
testcase_43 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
B=list(map(int,input().split()))
m=998244353
o,e,f=0,0,0
for i in range(N):
 if (N-1)&i==i:o+=B[i]==-1;f^=B[i]==1
 else:e+=B[i]==-1
if o:print(pow(2,e+o-1,m))
else:print(pow(2,e,m)) if f else print(0)
0