結果

問題 No.1741 Arrays and XOR Procedure
ユーザー 👑 KazunKazun
提出日時 2021-11-12 22:20:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 98,688 KB
最終ジャッジ日時 2024-05-04 09:21:23
合計ジャッジ時間 3,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 35 ms
52,352 KB
testcase_03 AC 67 ms
98,688 KB
testcase_04 AC 34 ms
52,576 KB
testcase_05 AC 68 ms
97,552 KB
testcase_06 AC 76 ms
98,036 KB
testcase_07 AC 71 ms
97,848 KB
testcase_08 AC 67 ms
96,876 KB
testcase_09 WA -
testcase_10 AC 66 ms
93,440 KB
testcase_11 AC 58 ms
85,312 KB
testcase_12 AC 54 ms
80,000 KB
testcase_13 AC 65 ms
92,544 KB
testcase_14 AC 56 ms
82,456 KB
testcase_15 AC 65 ms
89,600 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 39 ms
59,812 KB
testcase_20 WA -
testcase_21 AC 61 ms
89,140 KB
testcase_22 WA -
testcase_23 AC 44 ms
68,944 KB
testcase_24 AC 34 ms
61,328 KB
testcase_25 AC 67 ms
97,504 KB
testcase_26 WA -
testcase_27 AC 34 ms
59,088 KB
testcase_28 AC 58 ms
86,656 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 46 ms
73,344 KB
testcase_33 AC 51 ms
77,440 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 35 ms
60,928 KB
testcase_37 AC 48 ms
73,216 KB
testcase_38 AC 66 ms
96,896 KB
testcase_39 AC 45 ms
72,540 KB
testcase_40 AC 34 ms
57,728 KB
testcase_41 AC 39 ms
65,768 KB
testcase_42 WA -
testcase_43 AC 32 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def greedy(A):
    while len(A)>1:
        B=[]
        for i in range(len(A)-1):
            B.append(A[i]^A[i+1])
        A=B
    return A[0]

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

Mod=998244353
Q=B[1:-1].count(-1); Q_exp=pow(2,Q,Mod)

X=0
for a in [0,1]:
    for b in [0,1]:
        if B[0] in {-1,a} and B[-1] in {-1,b} and a!=b:
            X+=Q_exp

print(X%Mod)
0