結果

問題 No.1239 Multiplication -2
ユーザー zkouzkou
提出日時 2020-09-25 23:00:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,298 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,612 KB
最終ジャッジ日時 2024-06-28 07:14:38
合計ジャッジ時間 17,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 39 ms
10,624 KB
testcase_04 AC 38 ms
10,624 KB
testcase_05 AC 43 ms
10,624 KB
testcase_06 AC 34 ms
10,624 KB
testcase_07 AC 33 ms
10,496 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 31 ms
10,368 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 30 ms
10,496 KB
testcase_15 AC 321 ms
13,520 KB
testcase_16 AC 529 ms
15,572 KB
testcase_17 AC 1,298 ms
14,540 KB
testcase_18 AC 1,150 ms
17,224 KB
testcase_19 AC 944 ms
17,952 KB
testcase_20 AC 1,141 ms
21,612 KB
testcase_21 AC 857 ms
13,844 KB
testcase_22 AC 819 ms
13,908 KB
testcase_23 AC 705 ms
19,868 KB
testcase_24 AC 664 ms
18,208 KB
testcase_25 AC 479 ms
12,708 KB
testcase_26 AC 614 ms
18,592 KB
testcase_27 AC 288 ms
12,940 KB
testcase_28 AC 864 ms
19,068 KB
testcase_29 AC 935 ms
19,172 KB
testcase_30 AC 407 ms
14,360 KB
testcase_31 AC 596 ms
16,156 KB
testcase_32 AC 983 ms
19,996 KB
testcase_33 AC 705 ms
17,084 KB
testcase_34 AC 659 ms
16,588 KB
testcase_35 AC 332 ms
13,588 KB
testcase_36 AC 299 ms
13,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
As = list(map(int, input().split()))

MOD = 998244353

half = pow(2, MOD - 2, MOD)

alphas = [0] * 5
dp = [0] * (N + 1)
dpsum = 0
prod = 1
for i, A in enumerate(As):
    prod *= A
    if not (-2 <= prod <= 2):
        prod = 0
    if prod == -2:
        dp[i + 1] += pow(2, MOD - 2 - i, MOD)
    alphas[1] += 1
    new_alphas = [0] * 5
    for j in range(-2, 3):
        index = j * A
        if not (-2 <= index <= 2):
            index = 0
        new_alphas[index] += alphas[j] * half
        new_alphas[index] %= MOD
    alphas = new_alphas
    dp[i + 1] += (dpsum + alphas[-2]) % MOD
    dp[i + 1] %= MOD
    dpsum += dp[i + 1]
    dpsum = dpsum * half % MOD
    
# print(dp)

print(dp[-1])
0