結果
問題 | No.1741 Arrays and XOR Procedure |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2021-11-12 22:17:33 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 120 ms / 2,000 ms |
コード長 | 682 bytes |
コンパイル時間 | 295 ms |
コンパイル使用メモリ | 82,388 KB |
実行使用メモリ | 118,504 KB |
最終ジャッジ日時 | 2024-11-25 19:14:59 |
合計ジャッジ時間 | 5,470 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 41 |
ソースコード
n = int(input()) B = list(map(int,input().split())) mod = 998244353 two = [0] for i in range(1,n+1): count = 0 num = i while num%2 == 0: num //= 2 count += 1 two.append(two[-1]+count) def nCr(n,r): if two[n] > two[r]+two[n-r]: return 1 return 0 ans = 1 dp = [0]*2 dp[0] = 1 for i,b in enumerate(B): ndp = [0]*2 even = nCr(n-1,i) if b != 1: ndp[0] += dp[0] ndp[1] += dp[1] if b != 0: if even: ndp[0] += dp[0] ndp[1] += dp[1] else: ndp[1] += dp[0] ndp[0] += dp[1] dp = ndp dp[0] %= mod dp[1] %= mod print(dp[1])