結果

問題 No.1239 Multiplication -2
ユーザー tamatotamato
提出日時 2020-09-25 22:18:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 111,192 KB
最終ジャッジ日時 2024-06-28 06:40:41
合計ジャッジ時間 4,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,124 KB
testcase_01 AC 39 ms
53,020 KB
testcase_02 AC 39 ms
53,244 KB
testcase_03 AC 60 ms
68,072 KB
testcase_04 AC 60 ms
67,728 KB
testcase_05 AC 60 ms
67,620 KB
testcase_06 AC 49 ms
63,744 KB
testcase_07 AC 49 ms
62,864 KB
testcase_08 AC 38 ms
53,416 KB
testcase_09 AC 38 ms
52,816 KB
testcase_10 AC 38 ms
52,340 KB
testcase_11 AC 39 ms
52,128 KB
testcase_12 AC 38 ms
53,260 KB
testcase_13 AC 38 ms
53,460 KB
testcase_14 AC 39 ms
53,416 KB
testcase_15 AC 96 ms
91,144 KB
testcase_16 AC 116 ms
100,868 KB
testcase_17 AC 145 ms
111,020 KB
testcase_18 AC 144 ms
110,836 KB
testcase_19 AC 156 ms
110,792 KB
testcase_20 AC 154 ms
110,660 KB
testcase_21 AC 144 ms
110,996 KB
testcase_22 AC 145 ms
111,192 KB
testcase_23 AC 121 ms
103,564 KB
testcase_24 AC 120 ms
104,148 KB
testcase_25 AC 104 ms
100,384 KB
testcase_26 AC 110 ms
102,144 KB
testcase_27 AC 89 ms
88,520 KB
testcase_28 AC 146 ms
108,452 KB
testcase_29 AC 153 ms
107,852 KB
testcase_30 AC 101 ms
95,432 KB
testcase_31 AC 124 ms
102,252 KB
testcase_32 AC 159 ms
110,720 KB
testcase_33 AC 128 ms
103,896 KB
testcase_34 AC 124 ms
101,896 KB
testcase_35 AC 92 ms
91,096 KB
testcase_36 AC 91 ms
89,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    half = pow(2, mod-2, mod)
    dp = [[0] * 5 for _ in range(N)]
    dp[0][1] = 1
    ans = 0
    for i, a in enumerate(A[:-1]):
        dp[i+1][1] = half
        for j in range(-2, 3):
            ja = j * a
            if not -2 <= ja <= 2:
                ja = 0
            dp[i+1][ja] = (dp[i+1][ja] + dp[i][j] * half)%mod
            if ja == -2:
                ans = (ans + dp[i][j] * half)%mod
    for j in range(-2, 3):
        if j * A[-1] == -2:
            ans = (ans + dp[-1][j])%mod
    print(ans)


if __name__ == '__main__':
    main()
0