結果

問題 No.1239 Multiplication -2
ユーザー chineristACchineristAC
提出日時 2020-10-01 16:22:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 1,410 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 104,456 KB
最終ジャッジ日時 2024-07-07 01:21:31
合計ジャッジ時間 4,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 31 ms
52,096 KB
testcase_02 AC 32 ms
51,968 KB
testcase_03 AC 39 ms
61,056 KB
testcase_04 AC 39 ms
60,672 KB
testcase_05 AC 47 ms
65,024 KB
testcase_06 AC 36 ms
52,736 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 32 ms
52,096 KB
testcase_09 AC 32 ms
52,224 KB
testcase_10 AC 30 ms
52,480 KB
testcase_11 AC 30 ms
52,224 KB
testcase_12 AC 31 ms
52,224 KB
testcase_13 AC 30 ms
51,968 KB
testcase_14 AC 31 ms
52,224 KB
testcase_15 AC 160 ms
82,944 KB
testcase_16 AC 180 ms
90,496 KB
testcase_17 AC 69 ms
99,456 KB
testcase_18 AC 73 ms
101,504 KB
testcase_19 AC 68 ms
98,944 KB
testcase_20 AC 92 ms
104,456 KB
testcase_21 AC 143 ms
103,808 KB
testcase_22 AC 133 ms
104,080 KB
testcase_23 AC 126 ms
95,360 KB
testcase_24 AC 154 ms
95,232 KB
testcase_25 AC 51 ms
80,128 KB
testcase_26 AC 144 ms
86,656 KB
testcase_27 AC 106 ms
82,180 KB
testcase_28 AC 169 ms
100,856 KB
testcase_29 AC 170 ms
100,992 KB
testcase_30 AC 122 ms
85,364 KB
testcase_31 AC 160 ms
92,740 KB
testcase_32 AC 194 ms
104,320 KB
testcase_33 AC 216 ms
94,976 KB
testcase_34 AC 172 ms
92,928 KB
testcase_35 AC 106 ms
83,456 KB
testcase_36 AC 134 ms
82,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
mod = 998244353
inv = pow(2,mod-2,mod)

res = 0

for i in range(N):
    if abs(A[i])==2:
        base = pow(2,max(i-1,0),mod)
        left_pos = base
        left_nega = 0
        prod = 1
        if i!=1:
            base = (base * inv) % mod
        for j in range(1,i+1):
            if abs(A[i-j])==1:
                prod *= A[i-j]
                if prod>0:
                    left_pos += base
                else:
                    left_nega += base
            else:
                break
            if j!=i-1:
                base = (base * inv) % mod

        base = pow(2,max(0,N-i-2),mod)
        right_pos = base
        right_nega = 0
        prod = 1
        if i!=N-2:
            base = (base * inv) % mod
        for j in range(1,N-i):
            if abs(A[i+j])==1:
                prod *= A[i+j]
                if prod>0:
                    right_pos += base
                else:
                    right_nega += base
            else:
                break
            if j!=N-i-2:
                base = (base * inv) % mod

        if A[i]==2:
            res += left_pos * right_nega + left_nega * right_pos
        else:
            res += left_pos * right_pos + left_nega * right_nega
        res %= mod
        #print(left_pos,left_nega,right_pos,right_nega)

#print(res)
ans = res * pow(2,(N-1)*(mod-2),mod)
print(ans%mod)
0