結果

問題 No.1741 Arrays and XOR Procedure
ユーザー wolgnikwolgnik
提出日時 2021-11-12 22:58:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 661 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 103,932 KB
最終ジャッジ日時 2024-11-25 20:59:04
合計ジャッジ時間 6,615 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))
mod = 998244353

def combi(n, k):
  if n < k: return 0
  if n == k: return 1
  if n > k: return 1

def lucas(n, k):
  res = 1
  while n and k:
    if n & 1 < k & 1: res = 0
    elif n & 1 == 0: res &= 1
    else: res &= combi(n & 1, k & 1)
    n >>= 1
    k >>= 1
  return res
dp = [0] * 2
dp[0] = 1
for i in range(N):
  c = lucas(N - 1, i)
  #print(c)
  if a[i] == 1:
    if c: dp[0], dp[1] = dp[1], dp[0]
  if a[i] == -1:
    if c == 0: dp[0], dp[1] = dp[0] * 2 % mod, dp[1] * 2 % mod
    else: dp[0], dp[1] = (dp[0] + dp[1]) % mod, (dp[0] + dp[1]) % mod
print(dp[-1])
0