結果

問題 No.1741 Arrays and XOR Procedure
ユーザー ShirotsumeShirotsume
提出日時 2021-10-15 19:49:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 832 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 111,348 KB
最終ジャッジ日時 2024-05-04 04:09:47
合計ジャッジ時間 5,466 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 117 ms
110,848 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 WA -
testcase_06 AC 125 ms
111,104 KB
testcase_07 AC 133 ms
111,064 KB
testcase_08 AC 115 ms
111,104 KB
testcase_09 WA -
testcase_10 AC 118 ms
108,032 KB
testcase_11 AC 117 ms
103,808 KB
testcase_12 AC 105 ms
100,224 KB
testcase_13 WA -
testcase_14 AC 110 ms
102,400 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 56 ms
64,768 KB
testcase_20 WA -
testcase_21 AC 112 ms
106,240 KB
testcase_22 WA -
testcase_23 AC 72 ms
78,976 KB
testcase_24 AC 64 ms
67,072 KB
testcase_25 AC 117 ms
111,104 KB
testcase_26 WA -
testcase_27 AC 57 ms
64,256 KB
testcase_28 AC 109 ms
103,808 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 88 ms
92,928 KB
testcase_33 AC 99 ms
97,536 KB
testcase_34 AC 64 ms
72,704 KB
testcase_35 AC 43 ms
53,120 KB
testcase_36 WA -
testcase_37 AC 74 ms
84,096 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 55 ms
63,104 KB
testcase_41 AC 67 ms
74,112 KB
testcase_42 WA -
testcase_43 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def combmod2(n, r):
    return (n & r) != r

def solve(n, a):
    dp = [[0] * 2 for _ in range(n + 1)]
    dp[0][0] = 1
    mod = 998244353
    for i in range(n):
        if a[i] != -1:
            if combmod2(n - 1, i):
                dp[i + 1][1] = dp[i][1]
                dp[i + 1][0] = dp[i][0]
            else:
                dp[i + 1][1] += dp[i][(1 + a[i]) % 2]
                dp[i + 1][a[i]] += dp[i][a[i] % 2]
        else:
            if combmod2(n - 1, i):
                dp[i + 1][1] += 2 * dp[i][1]
                dp[i + 1][0] += 2 * dp[i][0]
            else:
                dp[i + 1][1] += dp[i][0] + dp[i][1]
                dp[i + 1][0] += dp[i][0] + dp[i][1]
        dp[i + 1][1] %= mod
        dp[i + 1][0] %= mod
    return dp[n][1]

n = int(input())
a = list(map(int,input().split()))
print(solve(n, a))
0