結果

問題 No.1239 Multiplication -2
ユーザー りあんりあん
提出日時 2020-09-03 22:20:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 772 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,716 KB
最終ジャッジ日時 2024-05-03 06:29:48
合計ジャッジ時間 14,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 42 ms
10,752 KB
testcase_04 AC 38 ms
10,752 KB
testcase_05 AC 39 ms
10,624 KB
testcase_06 AC 34 ms
10,624 KB
testcase_07 AC 34 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,496 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 32 ms
10,624 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 284 ms
12,796 KB
testcase_16 AC 433 ms
14,544 KB
testcase_17 AC 732 ms
14,776 KB
testcase_18 AC 750 ms
14,512 KB
testcase_19 AC 756 ms
15,244 KB
testcase_20 AC 746 ms
21,716 KB
testcase_21 AC 718 ms
13,820 KB
testcase_22 AC 687 ms
13,884 KB
testcase_23 AC 564 ms
19,652 KB
testcase_24 AC 538 ms
18,304 KB
testcase_25 AC 440 ms
12,928 KB
testcase_26 AC 505 ms
18,840 KB
testcase_27 AC 230 ms
12,928 KB
testcase_28 AC 708 ms
17,660 KB
testcase_29 AC 752 ms
18,604 KB
testcase_30 AC 323 ms
13,932 KB
testcase_31 AC 480 ms
15,340 KB
testcase_32 AC 772 ms
18,644 KB
testcase_33 AC 556 ms
15,864 KB
testcase_34 AC 523 ms
15,640 KB
testcase_35 AC 278 ms
13,312 KB
testcase_36 AC 247 ms
13,056 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 range(n):
    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) * a[i] + 2
        if not (0 <= k <= 4):
            k = 2
        nex[k] = (nex[k] + dp[j]) % mod
    dp = nex

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