結果

問題 No.1239 Multiplication -2
ユーザー shotoyooshotoyoo
提出日時 2020-09-25 23:31:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 2,258 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-06-28 08:12:53
合計ジャッジ時間 5,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,340 KB
testcase_01 AC 48 ms
60,172 KB
testcase_02 AC 48 ms
60,528 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 50 ms
60,308 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 48 ms
61,500 KB
testcase_13 RE -
testcase_14 AC 48 ms
61,024 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 107 ms
105,208 KB
testcase_18 AC 117 ms
105,144 KB
testcase_19 AC 106 ms
104,108 KB
testcase_20 AC 120 ms
105,856 KB
testcase_21 AC 211 ms
104,096 KB
testcase_22 RE -
testcase_23 AC 196 ms
96,652 KB
testcase_24 RE -
testcase_25 AC 74 ms
89,460 KB
testcase_26 AC 130 ms
94,832 KB
testcase_27 AC 257 ms
84,208 KB
testcase_28 AC 340 ms
101,168 KB
testcase_29 AC 334 ms
101,436 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


n = int(input())
a = list(map(int, input().split()))
ls = []
from collections import deque
from copy import copy
l = deque()
flg = False
left = True
right = False
seen0 = False
for num in a:
    if num==0:
        seen0 = True
        if l:
            if flg:
                left = False
                ls.append(list(l))
            l = []
            flg = False
    elif (num==2 or num==-2) and flg:
        ls.append(list(l))
        if seen0:
            left = False
        while abs(l[0])!=2:
            l.popleft()
        l.popleft()
        l.append(num)
        flg = True
    elif (num==2 or num==-2):
        l.append(num)
        flg = True
    else:
        if seen0:
            left = False
        l.append(num)
if l:
    ls.append(list(l))
    right = True
M = 998244353
inv2 = pow(2, M-2, M)
invs = [None]*n
invs[0] = 1
for i in range(1, n):
    invs[i] = invs[i-1]*inv2
    invs[i] %= M
def sub(l, left=False, right=False):
    if 2 in l:
        ind = l.index(2)
        flg2 = True
    else:
        ind = l.index(-2)
        flg2 = False
    e0 = inv2 if (ind>0 or not left) else 1
    o0 = 0
    e1 = inv2 if (ind<len(l)-1 or not right) else 1
    o1 = 0
    even = True
    for i in range(ind):
        if l[ind-i-1]==-1:
            even = not even
        tmp = invs[i+2] if (i<ind-1 or (not left)) else invs[i+1]
        if even:
            e0 += tmp
        else:
            o0 += tmp
    even = True
    for i in range(len(l)-ind-1):
        if l[ind+i+1]==-1:
            even = not even
        tmp = invs[i+2] if (i<len(l)-ind-2 or (not right)) else invs[i+1]
        if even:
            e1 += tmp
        else:
            o1 += tmp
    if not flg2:
        ans = e0*e1 + o0*o1
    else:
        ans = e0*o1 + e1*o0
#     print(left, right, e0, e1, o0, o1, ans%M)
    return ans%M
if len(ls)==0:
    ans = 0
elif len(ls)==1:
    ans = sub(ls[0], left=left, right=right)
else:
    ans = 0
    ans += sub(ls[0], left=left)
    ans %= M
    for i in range(1, len(ls)-1):
        ans += sub(ls[i])
        ans %= M
    ans += sub(ls[-1], right=right)
    ans %= M
print(ans%M)
0