結果

問題 No.1239 Multiplication -2
ユーザー りあんりあん
提出日時 2020-09-03 22:26:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,580 KB
最終ジャッジ日時 2024-05-03 06:36:53
合計ジャッジ時間 11,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 239 ms
12,916 KB
testcase_16 AC 350 ms
14,400 KB
testcase_17 AC 653 ms
14,036 KB
testcase_18 AC 614 ms
13,908 KB
testcase_19 AC 644 ms
15,240 KB
testcase_20 AC 657 ms
21,580 KB
testcase_21 AC 569 ms
13,940 KB
testcase_22 AC 563 ms
13,876 KB
testcase_23 AC 491 ms
19,844 KB
testcase_24 AC 444 ms
18,300 KB
testcase_25 AC 386 ms
12,800 KB
testcase_26 AC 360 ms
18,684 KB
testcase_27 AC 187 ms
12,928 KB
testcase_28 AC 551 ms
17,524 KB
testcase_29 AC 590 ms
18,592 KB
testcase_30 AC 267 ms
13,804 KB
testcase_31 AC 406 ms
15,204 KB
testcase_32 AC 637 ms
18,760 KB
testcase_33 AC 459 ms
16,164 KB
testcase_34 AC 475 ms
15,632 KB
testcase_35 AC 233 ms
13,292 KB
testcase_36 AC 205 ms
12,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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, n - 1, mod)
ans = 0
for i in a:
    nex = [0] * 5
    nex[3] = p
    p = p * 2 % mod
    ans = (ans + dp[0] * pp) % mod
    pp = pp * inv % mod
    for j in range(5):
        k = (j - 2) * i + 2
        if 0 <= k <= 4:
            nex[k] = (nex[k] + dp[j]) % mod
    dp = nex

ans = (ans + dp[0]) % mod
print(ans * pow(2, mod - n, mod) % mod)
0