結果

問題 No.1239 Multiplication -2
ユーザー mkawa2mkawa2
提出日時 2021-08-08 18:42:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,425 ms / 2,000 ms
コード長 1,107 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 37,284 KB
最終ジャッジ日時 2024-09-19 15:23:17
合計ジャッジ時間 22,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 40 ms
10,880 KB
testcase_04 AC 40 ms
10,880 KB
testcase_05 AC 41 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 360 ms
13,056 KB
testcase_16 AC 577 ms
14,556 KB
testcase_17 AC 1,345 ms
14,276 KB
testcase_18 AC 1,425 ms
14,024 KB
testcase_19 AC 1,303 ms
15,352 KB
testcase_20 AC 1,375 ms
21,820 KB
testcase_21 AC 1,422 ms
37,284 KB
testcase_22 AC 1,087 ms
14,164 KB
testcase_23 AC 1,074 ms
30,332 KB
testcase_24 AC 818 ms
18,328 KB
testcase_25 AC 148 ms
12,832 KB
testcase_26 AC 965 ms
33,400 KB
testcase_27 AC 415 ms
17,536 KB
testcase_28 AC 1,289 ms
33,912 KB
testcase_29 AC 1,392 ms
34,916 KB
testcase_30 AC 529 ms
14,080 KB
testcase_31 AC 779 ms
15,484 KB
testcase_32 AC 1,285 ms
18,864 KB
testcase_33 AC 899 ms
16,100 KB
testcase_34 AC 841 ms
15,792 KB
testcase_35 AC 429 ms
13,568 KB
testcase_36 AC 388 ms
13,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

from collections import defaultdict

n = II()
aa = LI()

dp = defaultdict(int)
c2 = 0
s = 1
dp[c2, s] = 1
two = 1

ans = 0
for i, a in enumerate(aa):
    if a==0:
        dp = defaultdict(int)
        c2 = 0
        s = 1
        dp[c2, s] = 1
        two = 2
    else:
        if abs(a) == 2: c2 += 1
        if a < 0: s *= -1
        dp[c2, s] += two
        if i < n-1: two = two*2%md
        ans += dp[c2-1, -s]*pow(two, md-2, md)%md
        ans %= md
        # print(ans, dp)

print(ans)
0