結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 34 ms
10,880 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 263 ms
12,928 KB
testcase_16 AC 396 ms
14,536 KB
testcase_17 AC 737 ms
14,792 KB
testcase_18 AC 743 ms
14,916 KB
testcase_19 AC 808 ms
15,372 KB
testcase_20 AC 790 ms
21,856 KB
testcase_21 AC 691 ms
14,192 KB
testcase_22 AC 704 ms
14,032 KB
testcase_23 AC 538 ms
19,984 KB
testcase_24 AC 528 ms
18,436 KB
testcase_25 AC 412 ms
13,088 KB
testcase_26 AC 505 ms
18,832 KB
testcase_27 AC 228 ms
13,056 KB
testcase_28 AC 687 ms
17,788 KB
testcase_29 AC 778 ms
18,744 KB
testcase_30 AC 325 ms
13,948 KB
testcase_31 AC 449 ms
15,472 KB
testcase_32 AC 761 ms
18,908 KB
testcase_33 AC 551 ms
16,180 KB
testcase_34 AC 491 ms
15,776 KB
testcase_35 AC 260 ms
13,544 KB
testcase_36 AC 236 ms
13,184 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, 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