結果

問題 No.1741 Arrays and XOR Procedure
ユーザー googol_S0googol_S0
提出日時 2021-11-12 21:29:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 111,456 KB
最終ジャッジ日時 2024-05-04 04:58:18
合計ジャッジ時間 7,036 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,248 KB
testcase_01 AC 39 ms
52,748 KB
testcase_02 AC 39 ms
52,340 KB
testcase_03 AC 176 ms
110,832 KB
testcase_04 AC 40 ms
52,620 KB
testcase_05 WA -
testcase_06 AC 180 ms
110,772 KB
testcase_07 AC 182 ms
110,932 KB
testcase_08 AC 158 ms
110,872 KB
testcase_09 AC 168 ms
108,436 KB
testcase_10 AC 173 ms
108,200 KB
testcase_11 AC 153 ms
104,244 KB
testcase_12 AC 134 ms
99,996 KB
testcase_13 AC 170 ms
108,504 KB
testcase_14 AC 149 ms
102,040 KB
testcase_15 AC 173 ms
106,380 KB
testcase_16 AC 80 ms
77,168 KB
testcase_17 AC 108 ms
88,544 KB
testcase_18 AC 151 ms
102,276 KB
testcase_19 AC 81 ms
77,108 KB
testcase_20 AC 197 ms
111,328 KB
testcase_21 AC 171 ms
106,160 KB
testcase_22 AC 160 ms
103,852 KB
testcase_23 AC 101 ms
87,056 KB
testcase_24 AC 81 ms
77,732 KB
testcase_25 AC 194 ms
111,356 KB
testcase_26 AC 121 ms
93,068 KB
testcase_27 WA -
testcase_28 AC 164 ms
103,896 KB
testcase_29 AC 171 ms
105,848 KB
testcase_30 AC 163 ms
104,020 KB
testcase_31 AC 75 ms
77,064 KB
testcase_32 AC 123 ms
93,020 KB
testcase_33 AC 132 ms
97,560 KB
testcase_34 AC 94 ms
83,404 KB
testcase_35 WA -
testcase_36 AC 82 ms
78,248 KB
testcase_37 AC 123 ms
92,364 KB
testcase_38 AC 181 ms
111,456 KB
testcase_39 AC 114 ms
90,620 KB
testcase_40 AC 67 ms
72,684 KB
testcase_41 AC 96 ms
82,288 KB
testcase_42 AC 69 ms
77,168 KB
testcase_43 AC 38 ms
52,252 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,i)
        DP[i+1][j^(k*x)]=(DP[i+1][j^(k*x)]+DP[i][j])%mod
print(DP[N][1])
0