結果

問題 No.1239 Multiplication -2
ユーザー りあんりあん
提出日時 2020-09-03 22:07:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,192 KB
最終ジャッジ日時 2024-11-24 03:49:41
合計ジャッジ時間 4,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 46 ms
51,584 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 59 ms
63,616 KB
testcase_04 AC 58 ms
62,976 KB
testcase_05 AC 59 ms
63,488 KB
testcase_06 AC 52 ms
60,288 KB
testcase_07 AC 54 ms
61,056 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 42 ms
51,840 KB
testcase_11 AC 42 ms
51,584 KB
testcase_12 AC 43 ms
51,584 KB
testcase_13 AC 42 ms
51,584 KB
testcase_14 AC 42 ms
51,584 KB
testcase_15 AC 87 ms
83,200 KB
testcase_16 AC 99 ms
90,196 KB
testcase_17 AC 119 ms
104,064 KB
testcase_18 AC 118 ms
104,032 KB
testcase_19 AC 120 ms
103,536 KB
testcase_20 AC 122 ms
104,192 KB
testcase_21 AC 121 ms
103,676 KB
testcase_22 AC 119 ms
103,424 KB
testcase_23 AC 108 ms
95,104 KB
testcase_24 AC 106 ms
94,976 KB
testcase_25 AC 94 ms
90,212 KB
testcase_26 AC 99 ms
92,892 KB
testcase_27 AC 85 ms
81,296 KB
testcase_28 AC 119 ms
100,508 KB
testcase_29 AC 121 ms
100,696 KB
testcase_30 AC 91 ms
85,316 KB
testcase_31 AC 102 ms
92,416 KB
testcase_32 AC 127 ms
104,052 KB
testcase_33 AC 110 ms
94,956 KB
testcase_34 AC 105 ms
92,928 KB
testcase_35 AC 87 ms
82,688 KB
testcase_36 AC 86 ms
81,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

mod = 998244353
inv = (mod + 1) // 2

n = int(input())
a = list(map(int, input().split()))
dp = [0] * 5
dp[3] = 1
p = 1
pp = pow(2, max(0, n - 2), mod)
ans = 0
for i in range(n):
    nex = [0] * 5
    for j in range(5):
        k = (j - 2) * a[i] + 2
        if not (0 <= k <= 4):
            k = 2
        nex[k] = (nex[k] + dp[j]) % mod
    nex[3] = (nex[3] + p) % mod
    p = p * 2 % mod
    dp = nex
    if i < n - 1:
        ans = (ans + dp[0] * pp) % mod
    else:
        ans = (ans + dp[0]) % mod
    pp = pp * inv % mod
print(ans * pow(2, mod - n, mod) % mod)
0