結果

問題 No.1741 Arrays and XOR Procedure
ユーザー 👑 KazunKazun
提出日時 2021-11-12 22:05:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 863 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 127,668 KB
最終ジャッジ日時 2024-05-04 08:53:25
合計ジャッジ時間 6,435 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,188 KB
testcase_01 AC 33 ms
53,608 KB
testcase_02 AC 33 ms
52,336 KB
testcase_03 AC 184 ms
127,152 KB
testcase_04 AC 36 ms
52,336 KB
testcase_05 AC 185 ms
127,668 KB
testcase_06 AC 190 ms
127,152 KB
testcase_07 AC 188 ms
127,296 KB
testcase_08 AC 177 ms
127,280 KB
testcase_09 WA -
testcase_10 AC 176 ms
122,576 KB
testcase_11 AC 151 ms
111,980 KB
testcase_12 AC 127 ms
104,544 KB
testcase_13 AC 174 ms
119,624 KB
testcase_14 AC 147 ms
107,416 KB
testcase_15 AC 178 ms
117,200 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 50 ms
70,692 KB
testcase_20 WA -
testcase_21 AC 153 ms
114,572 KB
testcase_22 WA -
testcase_23 AC 83 ms
93,060 KB
testcase_24 AC 50 ms
74,312 KB
testcase_25 AC 186 ms
125,484 KB
testcase_26 WA -
testcase_27 AC 50 ms
71,644 KB
testcase_28 AC 147 ms
113,184 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 103 ms
97,452 KB
testcase_33 AC 117 ms
102,308 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 62 ms
80,412 KB
testcase_37 AC 102 ms
96,380 KB
testcase_38 AC 182 ms
124,412 KB
testcase_39 AC 92 ms
94,636 KB
testcase_40 AC 52 ms
66,844 KB
testcase_41 AC 72 ms
86,940 KB
testcase_42 WA -
testcase_43 AC 34 ms
52,136 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

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

Mod=998244353
DP=[[[0,0],[0,0]] for _ in range(N)] # DP[i][b][k]: 現在 b で, change が k

for i,a in enumerate(A):
    if i==0:
        if a==-1 or a==0:
            DP[0][0][0]=1
        if a==-1 or a==1:
            DP[0][1][0]=1
    else:
        if a==-1 or a==0:
            DP[i][0][0]=DP[i-1][0][0]+DP[i-1][1][1]
            DP[i][0][1]=DP[i-1][0][1]+DP[i-1][1][0]
        if a==-1 or a==1:
            DP[i][1][0]=DP[i-1][1][0]+DP[i-1][0][1]
            DP[i][1][1]=DP[i-1][1][1]+DP[i-1][0][0]

    for b in [0,1]:
        for k in [0,1]:
            DP[i][b][k]%=Mod

print((DP[-1][0][1]+DP[-1][1][1])%Mod)
0