結果

問題 No.1239 Multiplication -2
ユーザー marroncastlemarroncastle
提出日時 2020-09-26 02:30:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 104,832 KB
最終ジャッジ日時 2024-06-28 10:56:14
合計ジャッジ時間 6,871 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 59 ms
64,768 KB
testcase_04 AC 60 ms
64,768 KB
testcase_05 AC 60 ms
65,024 KB
testcase_06 AC 52 ms
61,824 KB
testcase_07 AC 53 ms
62,208 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 131 ms
82,560 KB
testcase_16 AC 179 ms
90,368 KB
testcase_17 AC 290 ms
103,680 KB
testcase_18 AC 298 ms
103,552 KB
testcase_19 AC 284 ms
104,320 KB
testcase_20 AC 305 ms
104,832 KB
testcase_21 AC 276 ms
103,808 KB
testcase_22 AC 274 ms
103,680 KB
testcase_23 AC 212 ms
94,848 KB
testcase_24 AC 206 ms
95,104 KB
testcase_25 AC 183 ms
90,368 KB
testcase_26 AC 195 ms
92,672 KB
testcase_27 AC 124 ms
81,792 KB
testcase_28 AC 261 ms
100,736 KB
testcase_29 AC 277 ms
100,864 KB
testcase_30 AC 153 ms
85,376 KB
testcase_31 AC 193 ms
92,928 KB
testcase_32 AC 290 ms
103,936 KB
testcase_33 AC 217 ms
94,976 KB
testcase_34 AC 214 ms
92,800 KB
testcase_35 AC 130 ms
82,944 KB
testcase_36 AC 122 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N = int(input())
A = list(map(int, input().split()))
ans = 0
dp = [0]*5
dp[1] = 1
for i in range(N):
  new_dp = [0]*5
  if i<N-1:
    new_dp[1] = pow(2,i,mod)
  else:
    new_dp[1] = pow(2,i-1,mod)
  for j in range(-2,3):
    if abs(j*A[i])<=2:
      new_dp[j*A[i]] += dp[j]
  dp = new_dp
  if i==N-1:
    ans += dp[-2]
  else:
    ans += dp[-2]*pow(2,N-2-i,mod)
  ans %= mod
ans *= pow(pow(2,N-1,mod),mod-2,mod)
print(ans%mod)

0