結果

問題 No.1239 Multiplication -2
ユーザー KudeKude
提出日時 2020-09-25 22:29:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 104,832 KB
最終ジャッジ日時 2024-06-28 06:56:36
合計ジャッジ時間 6,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 60 ms
66,304 KB
testcase_04 AC 59 ms
65,920 KB
testcase_05 AC 69 ms
69,632 KB
testcase_06 AC 42 ms
53,248 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 40 ms
51,584 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 40 ms
52,096 KB
testcase_15 AC 143 ms
83,200 KB
testcase_16 AC 184 ms
90,368 KB
testcase_17 AC 278 ms
104,004 KB
testcase_18 AC 277 ms
104,064 KB
testcase_19 AC 295 ms
103,808 KB
testcase_20 AC 307 ms
104,832 KB
testcase_21 AC 267 ms
104,288 KB
testcase_22 AC 272 ms
104,192 KB
testcase_23 AC 207 ms
95,488 KB
testcase_24 AC 211 ms
95,232 KB
testcase_25 AC 164 ms
90,112 KB
testcase_26 AC 178 ms
92,416 KB
testcase_27 AC 162 ms
81,796 KB
testcase_28 AC 264 ms
100,864 KB
testcase_29 AC 278 ms
101,248 KB
testcase_30 AC 161 ms
85,632 KB
testcase_31 AC 208 ms
92,672 KB
testcase_32 AC 297 ms
104,576 KB
testcase_33 AC 234 ms
95,576 KB
testcase_34 AC 213 ms
93,056 KB
testcase_35 AC 141 ms
83,200 KB
testcase_36 AC 134 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
a = list(map(int, input().split()))
dp = [[1, 0], [0, 0]] # [abs is 2][sig is neg]
ans = 0
for z, x in enumerate(a):
    ndp = [[0, 0], [0, 0]]
    if x == 2:
        ndp[1][0] = dp[0][0]
        ndp[1][1] = dp[0][1]
    elif x == -2:
        ndp[1][0] = dp[0][1]
        ndp[1][1] = dp[0][0]
    elif x == 1:
        for i in range(2):
            for j in range(2):
                ndp[i][j] = dp[i][j]
    elif x == -1:
        for i in range(2):
            for j in range(2):
                ndp[i][j] = dp[i][1-j]
    ans = (ans + ndp[1][1] * pow(2, max(0, n - 2 - z), MOD)) % MOD
    ndp[0][0] += pow(2, z, MOD)
    ndp[0][0] %= MOD
    dp = ndp
q = pow(2, n-1, MOD)
print(ans * pow(q, MOD-2, MOD) % MOD)
0