結果

問題 No.1741 Arrays and XOR Procedure
ユーザー googol_S0googol_S0
提出日時 2021-11-12 21:29:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 111,536 KB
最終ジャッジ日時 2024-11-25 12:09:23
合計ジャッジ時間 6,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,548 KB
testcase_01 AC 35 ms
53,124 KB
testcase_02 AC 36 ms
52,416 KB
testcase_03 AC 160 ms
111,008 KB
testcase_04 AC 35 ms
52,984 KB
testcase_05 WA -
testcase_06 AC 160 ms
111,456 KB
testcase_07 AC 157 ms
111,164 KB
testcase_08 AC 138 ms
111,128 KB
testcase_09 AC 155 ms
108,376 KB
testcase_10 AC 156 ms
108,312 KB
testcase_11 AC 134 ms
104,084 KB
testcase_12 AC 122 ms
100,148 KB
testcase_13 AC 155 ms
108,564 KB
testcase_14 AC 131 ms
102,556 KB
testcase_15 AC 154 ms
106,060 KB
testcase_16 AC 81 ms
77,436 KB
testcase_17 AC 94 ms
89,076 KB
testcase_18 AC 139 ms
101,880 KB
testcase_19 AC 66 ms
77,192 KB
testcase_20 AC 167 ms
110,900 KB
testcase_21 AC 148 ms
106,240 KB
testcase_22 AC 141 ms
104,420 KB
testcase_23 AC 90 ms
86,768 KB
testcase_24 AC 72 ms
77,928 KB
testcase_25 AC 168 ms
111,536 KB
testcase_26 AC 108 ms
93,256 KB
testcase_27 WA -
testcase_28 AC 147 ms
104,208 KB
testcase_29 AC 151 ms
105,964 KB
testcase_30 AC 145 ms
103,908 KB
testcase_31 AC 65 ms
77,248 KB
testcase_32 AC 107 ms
93,208 KB
testcase_33 AC 118 ms
97,788 KB
testcase_34 AC 85 ms
83,384 KB
testcase_35 WA -
testcase_36 AC 70 ms
78,204 KB
testcase_37 AC 107 ms
92,792 KB
testcase_38 AC 158 ms
111,404 KB
testcase_39 AC 106 ms
90,756 KB
testcase_40 AC 57 ms
72,456 KB
testcase_41 AC 81 ms
82,352 KB
testcase_42 AC 61 ms
77,128 KB
testcase_43 AC 35 ms
53,476 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