結果

問題 No.1741 Arrays and XOR Procedure
ユーザー ShirotsumeShirotsume
提出日時 2021-10-15 19:00:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,098 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 111,336 KB
最終ジャッジ日時 2024-05-04 04:09:32
合計ジャッジ時間 9,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 32 ms
52,352 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 305 ms
110,976 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 64 ms
76,928 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 144 ms
90,624 KB
testcase_40 AC 58 ms
74,584 KB
testcase_41 AC 100 ms
82,048 KB
testcase_42 AC 68 ms
77,568 KB
testcase_43 AC 32 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def combmod2(n, r):
    #comb(n, r)は偶数か? True/False
    x = format(n, '032b')
    y = format(r, '032b')
    for i in range(32):
        if x[i] == '0' and y[i] == '1':
            return True
    return False


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, i):
                dp[i + 1][1] += dp[i][1]
                dp[i + 1][0] += dp[i][0]
            else:
                dp[i + 1][(1 + a[i]) % 2] += dp[i][1]
                dp[i + 1][a[i]] += dp[i][0]
        else:
            if combmod2(n, i):
                dp[i + 1][1] += dp[i][1]
                dp[i + 1][0] += 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()))
if 2 <= n <= 2 * 10 ** 5 and a.count(-1) + a.count(0) + a.count(1) == n:
    pass
else:
    raise Exception
    
print(solve(n, a))
0