結果

問題 No.1741 Arrays and XOR Procedure
ユーザー wolgnikwolgnik
提出日時 2021-11-12 22:50:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,089 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 131,200 KB
最終ジャッジ日時 2024-05-04 10:23:49
合計ジャッジ時間 5,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,348 KB
testcase_01 AC 35 ms
52,924 KB
testcase_02 AC 35 ms
53,212 KB
testcase_03 AC 153 ms
131,192 KB
testcase_04 AC 36 ms
52,872 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 131 ms
131,036 KB
testcase_08 AC 101 ms
128,204 KB
testcase_09 WA -
testcase_10 AC 137 ms
125,044 KB
testcase_11 WA -
testcase_12 AC 111 ms
104,536 KB
testcase_13 AC 136 ms
124,612 KB
testcase_14 AC 109 ms
108,504 KB
testcase_15 AC 138 ms
119,356 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 80 ms
76,660 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 71 ms
76,324 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 70 ms
77,228 KB
testcase_28 AC 132 ms
113,492 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 70 ms
76,564 KB
testcase_32 AC 96 ms
95,340 KB
testcase_33 AC 99 ms
101,212 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 71 ms
76,768 KB
testcase_37 AC 104 ms
95,052 KB
testcase_38 AC 151 ms
127,764 KB
testcase_39 AC 90 ms
91,452 KB
testcase_40 AC 53 ms
67,436 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Factorial:
  def __init__(self, n, mod):
    self.mod = mod
    self.f = [1]
    for i in range(1, n + 1): self.f.append(self.f[-1] * i % mod)
    self.i = [pow(self.f[-1], mod - 2, mod)]
    for i in range(1, n + 1)[: : -1]: self.i.append(self.i[-1] * i % mod)
    self.i.reverse()
  def factorial(self, i): return self.f[i]
  def ifactorial(self, i): return self.i[i]
  def combi(self, n, k): return self.f[n] * self.i[n - k] % self.mod * self.i[k] % self.mod
  def permi(self, n, k): return self.f[n] * self.i[n - k] % self.mod

f = Factorial(N, 2)

def lucas(n, k):
  res = 1
  while n and k:
    res &= f.combi(n % 2, k % 2)
    n >>= 1
    k >>= 1
  return res

dp = [0] * 2
dp[0] = 1
for i in range(N):
  if a[i] == 1:
    c = lucas(N - 1, i)
    if c: dp[0], dp[1] = dp[1], dp[0]
  if a[i] == -1:
    c = lucas(N - 1, i)
    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