結果
問題 | No.1239 Multiplication -2 |
ユーザー | shotoyoo |
提出日時 | 2020-09-25 23:33:07 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,244 bytes |
コンパイル時間 | 214 ms |
コンパイル使用メモリ | 82,172 KB |
実行使用メモリ | 106,836 KB |
最終ジャッジ日時 | 2024-06-28 08:15:43 |
合計ジャッジ時間 | 5,048 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
53,888 KB |
testcase_01 | AC | 40 ms
54,016 KB |
testcase_02 | AC | 42 ms
54,272 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 41 ms
53,888 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 44 ms
54,272 KB |
testcase_13 | RE | - |
testcase_14 | AC | 42 ms
54,272 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 104 ms
105,716 KB |
testcase_18 | AC | 110 ms
105,820 KB |
testcase_19 | AC | 101 ms
104,188 KB |
testcase_20 | AC | 114 ms
106,836 KB |
testcase_21 | AC | 208 ms
104,356 KB |
testcase_22 | RE | - |
testcase_23 | AC | 195 ms
96,768 KB |
testcase_24 | RE | - |
testcase_25 | AC | 70 ms
86,912 KB |
testcase_26 | AC | 122 ms
94,208 KB |
testcase_27 | AC | 245 ms
83,936 KB |
testcase_28 | AC | 337 ms
100,864 KB |
testcase_29 | AC | 328 ms
101,136 KB |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
ソースコード
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 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+10) invs[0] = 1 for i in range(1, n+10): 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)