結果

問題 No.1239 Multiplication -2
ユーザー googol_S0googol_S0
提出日時 2020-09-25 22:24:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 111,336 KB
最終ジャッジ日時 2024-06-28 06:47:06
合計ジャッジ時間 7,576 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,216 KB
testcase_01 AC 37 ms
52,904 KB
testcase_02 AC 39 ms
52,564 KB
testcase_03 AC 62 ms
69,264 KB
testcase_04 AC 61 ms
68,760 KB
testcase_05 AC 62 ms
68,960 KB
testcase_06 AC 48 ms
62,596 KB
testcase_07 AC 49 ms
63,120 KB
testcase_08 AC 37 ms
53,072 KB
testcase_09 AC 38 ms
52,476 KB
testcase_10 AC 38 ms
52,400 KB
testcase_11 AC 38 ms
53,164 KB
testcase_12 AC 38 ms
52,412 KB
testcase_13 AC 38 ms
52,504 KB
testcase_14 AC 39 ms
51,824 KB
testcase_15 AC 144 ms
90,536 KB
testcase_16 AC 204 ms
100,564 KB
testcase_17 AC 318 ms
111,336 KB
testcase_18 AC 323 ms
111,208 KB
testcase_19 AC 333 ms
110,964 KB
testcase_20 AC 329 ms
111,212 KB
testcase_21 AC 311 ms
111,036 KB
testcase_22 AC 304 ms
111,180 KB
testcase_23 AC 243 ms
103,764 KB
testcase_24 AC 238 ms
104,072 KB
testcase_25 AC 204 ms
100,416 KB
testcase_26 AC 220 ms
102,160 KB
testcase_27 AC 133 ms
88,132 KB
testcase_28 AC 296 ms
108,844 KB
testcase_29 AC 313 ms
108,392 KB
testcase_30 AC 167 ms
94,832 KB
testcase_31 AC 222 ms
102,280 KB
testcase_32 AC 333 ms
111,180 KB
testcase_33 AC 246 ms
104,204 KB
testcase_34 AC 230 ms
102,248 KB
testcase_35 AC 145 ms
90,440 KB
testcase_36 AC 137 ms
88,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
DP=[[0]*5 for i in range(N+1)]
mod=998244353
DP[0][1]=1
for i in range(N):
  DP[i+1][1]=pow(2,i,mod)
for i in range(N):
  for j in range(-2,3):
    if abs(A[i]*j)>3:
      continue
    DP[i+1][j*A[i]]=(DP[i+1][j*A[i]]+DP[i][j])%mod
print((sum(DP[i][-2]*pow(2,N-i-1,mod) for i in range(N))+DP[N][-2])*pow(pow(2,mod-2,mod),N-1,mod)%mod)
0