結果

問題 No.1741 Arrays and XOR Procedure
ユーザー とりゐとりゐ
提出日時 2021-10-16 13:18:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 81,616 KB
実行使用メモリ 104,320 KB
最終ジャッジ日時 2024-05-04 04:11:34
合計ジャッジ時間 14,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 533 ms
104,308 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 522 ms
104,192 KB
testcase_06 AC 523 ms
104,064 KB
testcase_07 AC 529 ms
103,936 KB
testcase_08 AC 500 ms
104,320 KB
testcase_09 AC 438 ms
100,608 KB
testcase_10 AC 456 ms
100,480 KB
testcase_11 AC 398 ms
94,976 KB
testcase_12 AC 321 ms
90,752 KB
testcase_13 AC 440 ms
100,736 KB
testcase_14 AC 371 ms
92,160 KB
testcase_15 AC 403 ms
97,664 KB
testcase_16 AC 120 ms
76,800 KB
testcase_17 AC 214 ms
82,688 KB
testcase_18 AC 382 ms
92,416 KB
testcase_19 AC 105 ms
76,800 KB
testcase_20 AC 516 ms
104,064 KB
testcase_21 AC 391 ms
97,408 KB
testcase_22 AC 365 ms
94,976 KB
testcase_23 AC 208 ms
82,144 KB
testcase_24 AC 130 ms
76,416 KB
testcase_25 AC 493 ms
103,808 KB
testcase_26 AC 260 ms
85,248 KB
testcase_27 AC 102 ms
76,416 KB
testcase_28 AC 393 ms
94,592 KB
testcase_29 AC 453 ms
97,664 KB
testcase_30 AC 366 ms
94,464 KB
testcase_31 AC 96 ms
76,928 KB
testcase_32 AC 256 ms
85,248 KB
testcase_33 AC 293 ms
88,576 KB
testcase_34 AC 161 ms
79,872 KB
testcase_35 AC 66 ms
69,760 KB
testcase_36 AC 107 ms
76,672 KB
testcase_37 AC 247 ms
85,632 KB
testcase_38 AC 517 ms
104,064 KB
testcase_39 AC 260 ms
84,096 KB
testcase_40 AC 93 ms
76,544 KB
testcase_41 AC 179 ms
79,360 KB
testcase_42 AC 129 ms
76,672 KB
testcase_43 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def base10int(n,base):
  x=[]
  while n!=0:
    x.append(n%base)
    n//=base
  return x[::-1]

def comb(n,r):
  if r>n:
    return 0
  tmp1=1
  tmp2=1
  for i in range(r):
    tmp1*=n-i
    tmp2*=i+1
  return tmp1//tmp2

def lucas(n,k,p):
  # nCk mod p を求める
  np=base10int(n,p)
  kp=base10int(k,p)
  kp=[0]*(len(np)-len(kp))+kp
  tmp=1
  for ni,ki in zip(np,kp):
    tmp*=comb(ni,ki)
    tmp%=p
  return tmp

n=int(input())
b=list(map(int,input().split()))
if 1<=n<=200000 and min(b)>=-1 and max(b)<=1:
  pass
else:
  raise Exception
mod=998244353
dp=[1,0]
for i in range(n):
  m=lucas(n-1,i,2)
  if b[i]==0:
    pass
  if b[i]==1:
    if m==1:
      dp=[dp[1],dp[0]]
  if b[i]==-1:
    if m==0:
      dp=[2*dp[0]%mod,2*dp[1]%mod]
    else:
      dp=[(dp[0]+dp[1])%mod]*2
print(dp[1])
0