結果

問題 No.1741 Arrays and XOR Procedure
ユーザー 👑 KazunKazun
提出日時 2021-11-12 22:30:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 104,288 KB
最終ジャッジ日時 2024-05-04 09:44:28
合計ジャッジ時間 4,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,352 KB
testcase_01 AC 37 ms
52,088 KB
testcase_02 AC 38 ms
52,792 KB
testcase_03 AC 107 ms
104,288 KB
testcase_04 AC 36 ms
52,980 KB
testcase_05 AC 97 ms
103,664 KB
testcase_06 AC 102 ms
103,820 KB
testcase_07 AC 104 ms
104,052 KB
testcase_08 AC 94 ms
103,604 KB
testcase_09 AC 93 ms
100,732 KB
testcase_10 AC 92 ms
100,396 KB
testcase_11 AC 83 ms
94,996 KB
testcase_12 AC 76 ms
90,368 KB
testcase_13 AC 94 ms
100,096 KB
testcase_14 AC 81 ms
92,344 KB
testcase_15 AC 93 ms
97,664 KB
testcase_16 AC 54 ms
71,600 KB
testcase_17 AC 65 ms
83,104 KB
testcase_18 AC 82 ms
92,160 KB
testcase_19 AC 50 ms
68,316 KB
testcase_20 AC 94 ms
103,772 KB
testcase_21 AC 83 ms
97,412 KB
testcase_22 AC 78 ms
94,576 KB
testcase_23 AC 62 ms
81,744 KB
testcase_24 AC 47 ms
72,292 KB
testcase_25 AC 94 ms
103,680 KB
testcase_26 AC 70 ms
85,416 KB
testcase_27 AC 48 ms
66,560 KB
testcase_28 AC 81 ms
94,976 KB
testcase_29 AC 86 ms
97,648 KB
testcase_30 AC 84 ms
94,784 KB
testcase_31 AC 46 ms
66,176 KB
testcase_32 AC 70 ms
85,308 KB
testcase_33 AC 75 ms
88,380 KB
testcase_34 AC 59 ms
79,616 KB
testcase_35 WA -
testcase_36 AC 50 ms
74,852 KB
testcase_37 AC 68 ms
85,248 KB
testcase_38 AC 100 ms
103,788 KB
testcase_39 AC 68 ms
84,036 KB
testcase_40 AC 49 ms
63,232 KB
testcase_41 AC 62 ms
78,976 KB
testcase_42 AC 52 ms
69,260 KB
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

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]

def nCr_mod2(n,r):
    while (n>0) or (r>0):
        if n&1==0 and r&1==1:
            return 0
        n>>=1; r>>=1
    return 1

def inner(A,B):
    X=0
    for a,b in zip(A,B):
        X+=a*b
    return X
#==================================================
from itertools import product

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

F=[nCr_mod2(N-1,r) for r in range(N)]
Mod=998244353

DP=[1,0]
for i,b in enumerate(B):
    if b==-1:
        E=DP.copy()
        if F[i]==0:
            DP[0]=2*DP[0]%Mod
            DP[1]=2*DP[1]%Mod
        else:
            DP[0]=DP[1]=(DP[0]+DP[1])%Mod

print(DP[1])
0