結果

問題 No.1741 Arrays and XOR Procedure
ユーザー googol_S0googol_S0
提出日時 2021-11-12 21:30:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 111,488 KB
最終ジャッジ日時 2024-05-04 05:00:38
合計ジャッジ時間 6,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 199 ms
110,872 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 162 ms
110,976 KB
testcase_06 AC 198 ms
111,052 KB
testcase_07 AC 191 ms
110,976 KB
testcase_08 AC 163 ms
111,132 KB
testcase_09 AC 166 ms
108,288 KB
testcase_10 AC 170 ms
108,544 KB
testcase_11 AC 147 ms
104,064 KB
testcase_12 AC 129 ms
100,352 KB
testcase_13 AC 163 ms
108,288 KB
testcase_14 AC 143 ms
102,272 KB
testcase_15 AC 153 ms
106,112 KB
testcase_16 AC 72 ms
77,056 KB
testcase_17 AC 101 ms
88,576 KB
testcase_18 AC 145 ms
101,888 KB
testcase_19 AC 74 ms
77,184 KB
testcase_20 AC 168 ms
111,300 KB
testcase_21 AC 149 ms
106,220 KB
testcase_22 AC 136 ms
104,064 KB
testcase_23 AC 99 ms
86,668 KB
testcase_24 AC 66 ms
77,696 KB
testcase_25 AC 170 ms
111,488 KB
testcase_26 AC 108 ms
93,184 KB
testcase_27 AC 76 ms
77,440 KB
testcase_28 AC 144 ms
104,160 KB
testcase_29 AC 149 ms
105,852 KB
testcase_30 AC 143 ms
103,680 KB
testcase_31 AC 69 ms
76,928 KB
testcase_32 AC 112 ms
93,312 KB
testcase_33 AC 125 ms
97,664 KB
testcase_34 AC 87 ms
83,420 KB
testcase_35 AC 62 ms
70,784 KB
testcase_36 AC 70 ms
78,208 KB
testcase_37 AC 110 ms
92,672 KB
testcase_38 AC 172 ms
110,976 KB
testcase_39 AC 104 ms
90,112 KB
testcase_40 AC 74 ms
76,800 KB
testcase_41 AC 82 ms
82,176 KB
testcase_42 AC 73 ms
77,184 KB
testcase_43 AC 34 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def lucas(n,k):
  while max(n,k):
    if n&1==0 and k&1==1:
      return 0
    n>>=1
    k>>=1
  return 1

N=int(input())
B=list(map(int,input().split()))
DP=[[0,0] for i in range(N+1)]
DP[0][0]=1
mod=998244353
for i in range(N):
  for j in range(2):
    for k in range(2):
      if B[i]==k or B[i]==-1:
        x=lucas(N-1,i)
        DP[i+1][j^(k*x)]=(DP[i+1][j^(k*x)]+DP[i][j])%mod
print(DP[N][1])
0