結果

問題 No.1741 Arrays and XOR Procedure
ユーザー wolgnikwolgnik
提出日時 2021-11-12 22:47:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,084 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 131,200 KB
最終ジャッジ日時 2024-11-25 20:34:34
合計ジャッジ時間 6,686 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 169 ms
130,944 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 WA -
testcase_06 AC 174 ms
131,200 KB
testcase_07 AC 139 ms
130,944 KB
testcase_08 AC 108 ms
127,616 KB
testcase_09 AC 147 ms
123,776 KB
testcase_10 AC 147 ms
124,544 KB
testcase_11 AC 127 ms
113,152 KB
testcase_12 AC 122 ms
104,576 KB
testcase_13 AC 144 ms
124,288 KB
testcase_14 AC 118 ms
108,800 KB
testcase_15 AC 147 ms
118,656 KB
testcase_16 AC 72 ms
76,032 KB
testcase_17 AC 101 ms
89,856 KB
testcase_18 AC 123 ms
108,672 KB
testcase_19 AC 79 ms
76,544 KB
testcase_20 AC 173 ms
130,432 KB
testcase_21 AC 147 ms
116,096 KB
testcase_22 AC 137 ms
113,536 KB
testcase_23 AC 99 ms
87,624 KB
testcase_24 AC 73 ms
76,288 KB
testcase_25 AC 161 ms
130,816 KB
testcase_26 AC 112 ms
94,976 KB
testcase_27 WA -
testcase_28 AC 141 ms
113,664 KB
testcase_29 AC 157 ms
118,784 KB
testcase_30 AC 138 ms
113,408 KB
testcase_31 WA -
testcase_32 AC 103 ms
94,464 KB
testcase_33 AC 111 ms
100,864 KB
testcase_34 AC 89 ms
82,944 KB
testcase_35 WA -
testcase_36 AC 73 ms
76,544 KB
testcase_37 AC 107 ms
94,720 KB
testcase_38 AC 155 ms
127,872 KB
testcase_39 AC 99 ms
90,752 KB
testcase_40 AC 59 ms
66,176 KB
testcase_41 AC 84 ms
81,920 KB
testcase_42 AC 77 ms
76,544 KB
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: 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