結果

問題 No.1239 Multiplication -2
ユーザー titiatitia
提出日時 2020-09-25 23:13:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 2,000 ms
コード長 1,823 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 103,856 KB
最終ジャッジ日時 2024-06-28 07:20:35
合計ジャッジ時間 9,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,240 KB
testcase_01 AC 38 ms
52,272 KB
testcase_02 AC 37 ms
53,432 KB
testcase_03 AC 49 ms
60,880 KB
testcase_04 AC 49 ms
60,468 KB
testcase_05 AC 71 ms
73,380 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 40 ms
53,476 KB
testcase_08 AC 39 ms
52,152 KB
testcase_09 AC 39 ms
52,060 KB
testcase_10 AC 38 ms
53,744 KB
testcase_11 AC 38 ms
53,400 KB
testcase_12 AC 38 ms
53,180 KB
testcase_13 AC 38 ms
53,616 KB
testcase_14 AC 38 ms
52,740 KB
testcase_15 AC 228 ms
83,028 KB
testcase_16 AC 218 ms
90,440 KB
testcase_17 AC 350 ms
102,124 KB
testcase_18 AC 497 ms
103,328 KB
testcase_19 AC 256 ms
100,168 KB
testcase_20 AC 363 ms
103,824 KB
testcase_21 AC 491 ms
103,856 KB
testcase_22 AC 356 ms
103,576 KB
testcase_23 AC 414 ms
95,088 KB
testcase_24 AC 279 ms
95,144 KB
testcase_25 AC 61 ms
79,772 KB
testcase_26 AC 303 ms
90,216 KB
testcase_27 AC 202 ms
81,748 KB
testcase_28 AC 480 ms
100,176 KB
testcase_29 AC 532 ms
100,736 KB
testcase_30 AC 225 ms
85,424 KB
testcase_31 AC 331 ms
92,236 KB
testcase_32 AC 536 ms
103,784 KB
testcase_33 AC 362 ms
94,632 KB
testcase_34 AC 346 ms
92,760 KB
testcase_35 AC 197 ms
83,036 KB
testcase_36 AC 191 ms
82,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

mod=998244353

PLUS=[]
MINUS=[]
ANS=0

for i in range(N):
    if A[i]==2 or A[i]==-2:
        if i==0:
            LEFTP=1
            LEFTM=0
        else:
            LEFTP=pow(2,mod-2,mod)
            LEFTM=0

        LEFT=1

        for j in range(i-1,-1,-1):
            LEFT*=A[j]

            if j!=0:
                if LEFT==1:
                    LEFTP+=pow(pow(2,mod-2,mod),i-j+1,mod)
                elif LEFT==-1:
                    LEFTM+=pow(pow(2,mod-2,mod),i-j+1,mod)
                else:
                    break
            else:
                if LEFT==1:
                    LEFTP+=pow(pow(2,mod-2,mod),i-j,mod)
                elif LEFT==-1:
                    LEFTM+=pow(pow(2,mod-2,mod),i-j,mod)
                else:
                    break
                

        if i==N-1:
            RIGHTP=1
            RIGHTM=0
        else:
            RIGHTP=pow(2,mod-2,mod)
            RIGHTM=0

        RIGHT=1

        for j in range(i+1,N):
            RIGHT*=A[j]

            if j!=N-1:
                if RIGHT==1:
                    RIGHTP+=pow(pow(2,mod-2,mod),j-i+1,mod)
                elif RIGHT==-1:
                    RIGHTM+=pow(pow(2,mod-2,mod),j-i+1,mod)
                else:
                    break
            else:
                if RIGHT==1:
                    RIGHTP+=pow(pow(2,mod-2,mod),j-i,mod)
                elif RIGHT==-1:
                    RIGHTM+=pow(pow(2,mod-2,mod),j-i,mod)
                else:
                    break

        if A[i]==2:
            ANS+=LEFTP*RIGHTM+LEFTM*RIGHTP
        else:
            ANS+=LEFTP*RIGHTP+LEFTM*RIGHTM

        ANS%=mod

print(ANS)
            
            

        
                
            
            
            
0