結果

問題 No.1239 Multiplication -2
ユーザー ibyiby
提出日時 2020-11-27 01:47:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,160 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 64,312 KB
最終ジャッジ日時 2024-07-23 21:13:37
合計ジャッジ時間 24,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 38 ms
11,264 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 33 ms
11,008 KB
testcase_07 AC 31 ms
11,136 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 34 ms
10,880 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 29 ms
11,008 KB
testcase_15 AC 409 ms
27,060 KB
testcase_16 AC 696 ms
38,096 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,485 ms
63,876 KB
testcase_20 WA -
testcase_21 AC 1,418 ms
62,896 KB
testcase_22 AC 1,282 ms
59,752 KB
testcase_23 AC 1,048 ms
47,976 KB
testcase_24 AC 923 ms
45,964 KB
testcase_25 AC 468 ms
37,812 KB
testcase_26 AC 895 ms
43,808 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1,396 ms
60,272 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1,454 ms
63,232 KB
testcase_33 AC 1,015 ms
47,176 KB
testcase_34 AC 908 ms
44,596 KB
testcase_35 WA -
testcase_36 AC 410 ms
25,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n = int(input())
a = list(map(int, input().split()))
numerator = 0
denominator = pow(2, n - 1, MOD)
dp = [{0: 0, -1: 0, 1: 0, 2: 0, -2: 0} for i in range(n + 1)]
for i, v in enumerate(a):
    if v == 1:
        dp[i + 1][1] = (pow(2, i - 1, MOD) + dp[i][1]) % MOD
        dp[i + 1][2] = dp[i][2]
        dp[i + 1][-1] = dp[i][-1]
        dp[i + 1][-2] = dp[i][-2]
        continue
    elif v == 2:
        dp[i + 1][2] = (dp[i][1] + pow(2, max(i - 1, 0), MOD)) % MOD
        dp[i + 1][-2] = dp[i][-1]
        continue
    elif v == -1:
        dp[i + 1][1] = dp[i][-1]
        dp[i + 1][-1] = (pow(2, i - 1, MOD) + dp[i][1]) % MOD
        dp[i + 1][2] = dp[i][-2]
        dp[i + 1][-2] = dp[i][2]
        continue
    elif v == -2:
        dp[i + 1][2] = dp[i][-1]
        dp[i + 1][-2] = (dp[i][1] + pow(2, max(i - 1, 0), MOD)) % MOD
        continue
    else:
        dp[i + 1][0] = 1

for i in range(n + 1):
    if i != n:
        numerator += dp[i][-2] * pow(2, n - i - 1, MOD)
    else:
        numerator += dp[i][-2]
    numerator %= MOD

#print(numerator, denominator)
ans = (numerator * pow(denominator, MOD - 2, MOD)) % MOD
print(ans)
0