結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 169 ms
131,456 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 140 ms
131,072 KB
testcase_08 AC 106 ms
126,976 KB
testcase_09 WA -
testcase_10 AC 146 ms
124,544 KB
testcase_11 WA -
testcase_12 AC 121 ms
104,448 KB
testcase_13 AC 144 ms
124,160 KB
testcase_14 AC 118 ms
108,800 KB
testcase_15 AC 147 ms
118,528 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 81 ms
76,544 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 72 ms
76,416 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 79 ms
76,416 KB
testcase_28 AC 141 ms
113,536 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 79 ms
76,288 KB
testcase_32 AC 105 ms
94,720 KB
testcase_33 AC 110 ms
100,608 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 74 ms
76,800 KB
testcase_37 AC 107 ms
94,592 KB
testcase_38 AC 153 ms
127,360 KB
testcase_39 AC 99 ms
91,008 KB
testcase_40 AC 59 ms
66,304 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