結果

問題 No.1741 Arrays and XOR Procedure
ユーザー 👑 KazunKazun
提出日時 2021-11-12 23:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 608 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-05-04 11:28:03
合計ジャッジ時間 5,215 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 105 ms
105,856 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 105 ms
105,472 KB
testcase_06 AC 114 ms
105,856 KB
testcase_07 AC 109 ms
105,856 KB
testcase_08 AC 100 ms
105,088 KB
testcase_09 AC 104 ms
101,888 KB
testcase_10 AC 103 ms
101,888 KB
testcase_11 AC 99 ms
96,000 KB
testcase_12 AC 89 ms
91,392 KB
testcase_13 AC 104 ms
101,632 KB
testcase_14 AC 96 ms
93,568 KB
testcase_15 AC 99 ms
98,560 KB
testcase_16 AC 64 ms
66,560 KB
testcase_17 AC 76 ms
80,512 KB
testcase_18 AC 95 ms
93,696 KB
testcase_19 AC 58 ms
64,128 KB
testcase_20 AC 109 ms
105,600 KB
testcase_21 AC 99 ms
98,560 KB
testcase_22 AC 94 ms
95,744 KB
testcase_23 AC 74 ms
78,592 KB
testcase_24 AC 60 ms
66,176 KB
testcase_25 AC 108 ms
105,344 KB
testcase_26 AC 77 ms
83,328 KB
testcase_27 AC 56 ms
63,872 KB
testcase_28 AC 94 ms
95,872 KB
testcase_29 AC 101 ms
98,944 KB
testcase_30 AC 98 ms
96,128 KB
testcase_31 AC 58 ms
64,000 KB
testcase_32 AC 84 ms
85,632 KB
testcase_33 AC 86 ms
89,088 KB
testcase_34 AC 65 ms
72,192 KB
testcase_35 AC 43 ms
52,864 KB
testcase_36 AC 59 ms
66,304 KB
testcase_37 AC 78 ms
83,840 KB
testcase_38 AC 109 ms
105,472 KB
testcase_39 AC 82 ms
84,352 KB
testcase_40 AC 54 ms
61,952 KB
testcase_41 AC 70 ms
73,728 KB
testcase_42 AC 64 ms
66,560 KB
testcase_43 AC 41 ms
51,840 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]

def nCr_mod2(n,r):
    return 1 if n|r==n else 0
#==================================================
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):
    E=DP.copy()
    if b==-1:
        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
    elif b==1 and F[i]==1:
        DP=E[::-1]

print(DP[1])
0