結果

問題 No.1239 Multiplication -2
ユーザー marroncastlemarroncastle
提出日時 2020-09-26 02:41:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 392 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 104,704 KB
最終ジャッジ日時 2024-06-28 11:14:59
合計ジャッジ時間 6,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,456 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 55 ms
64,384 KB
testcase_04 AC 55 ms
64,512 KB
testcase_05 AC 56 ms
65,280 KB
testcase_06 AC 49 ms
62,080 KB
testcase_07 AC 50 ms
61,952 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 38 ms
51,712 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 39 ms
51,456 KB
testcase_15 AC 125 ms
82,944 KB
testcase_16 AC 172 ms
90,240 KB
testcase_17 AC 288 ms
103,680 KB
testcase_18 AC 295 ms
104,172 KB
testcase_19 AC 282 ms
104,044 KB
testcase_20 AC 300 ms
104,704 KB
testcase_21 AC 266 ms
103,552 KB
testcase_22 AC 260 ms
103,680 KB
testcase_23 AC 206 ms
95,104 KB
testcase_24 AC 201 ms
95,336 KB
testcase_25 AC 175 ms
90,692 KB
testcase_26 AC 184 ms
92,544 KB
testcase_27 AC 111 ms
81,536 KB
testcase_28 AC 251 ms
100,432 KB
testcase_29 AC 264 ms
100,652 KB
testcase_30 AC 142 ms
85,248 KB
testcase_31 AC 187 ms
92,288 KB
testcase_32 AC 284 ms
104,448 KB
testcase_33 AC 208 ms
94,848 KB
testcase_34 AC 197 ms
92,724 KB
testcase_35 AC 124 ms
82,560 KB
testcase_36 AC 118 ms
81,920 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
  new_dp[1] = pow(2,i,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