結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,256 KB
testcase_01 AC 35 ms
52,204 KB
testcase_02 AC 34 ms
53,276 KB
testcase_03 AC 180 ms
111,128 KB
testcase_04 AC 37 ms
52,456 KB
testcase_05 AC 150 ms
111,140 KB
testcase_06 AC 183 ms
111,168 KB
testcase_07 AC 181 ms
111,168 KB
testcase_08 AC 153 ms
110,956 KB
testcase_09 AC 158 ms
108,384 KB
testcase_10 AC 163 ms
108,240 KB
testcase_11 AC 142 ms
104,124 KB
testcase_12 AC 125 ms
100,560 KB
testcase_13 AC 158 ms
108,692 KB
testcase_14 AC 134 ms
102,424 KB
testcase_15 AC 144 ms
106,204 KB
testcase_16 AC 68 ms
77,160 KB
testcase_17 AC 95 ms
88,656 KB
testcase_18 AC 135 ms
102,336 KB
testcase_19 AC 71 ms
77,488 KB
testcase_20 AC 161 ms
111,316 KB
testcase_21 AC 143 ms
106,356 KB
testcase_22 AC 135 ms
103,960 KB
testcase_23 AC 97 ms
87,064 KB
testcase_24 AC 69 ms
77,852 KB
testcase_25 AC 174 ms
111,312 KB
testcase_26 AC 109 ms
93,316 KB
testcase_27 AC 75 ms
77,696 KB
testcase_28 AC 142 ms
103,820 KB
testcase_29 AC 148 ms
106,128 KB
testcase_30 AC 138 ms
103,896 KB
testcase_31 AC 68 ms
77,088 KB
testcase_32 AC 107 ms
93,448 KB
testcase_33 AC 119 ms
98,104 KB
testcase_34 AC 87 ms
83,372 KB
testcase_35 AC 62 ms
72,344 KB
testcase_36 AC 66 ms
78,064 KB
testcase_37 AC 105 ms
92,920 KB
testcase_38 AC 171 ms
111,280 KB
testcase_39 AC 105 ms
90,524 KB
testcase_40 AC 73 ms
76,992 KB
testcase_41 AC 84 ms
82,232 KB
testcase_42 AC 78 ms
77,400 KB
testcase_43 AC 37 ms
53,152 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