結果

問題 No.1239 Multiplication -2
ユーザー titiatitia
提出日時 2020-09-25 23:13:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,823 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,716 KB
最終ジャッジ日時 2024-06-28 07:21:14
合計ジャッジ時間 11,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 45 ms
10,880 KB
testcase_04 AC 48 ms
11,008 KB
testcase_05 AC 49 ms
10,880 KB
testcase_06 AC 36 ms
10,880 KB
testcase_07 AC 34 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 407 ms
12,800 KB
testcase_16 AC 673 ms
14,580 KB
testcase_17 AC 1,509 ms
14,100 KB
testcase_18 TLE -
testcase_19 AC 1,057 ms
15,252 KB
testcase_20 AC 1,525 ms
21,716 KB
testcase_21 TLE -
testcase_22 AC 1,428 ms
14,112 KB
testcase_23 AC 1,594 ms
19,984 KB
testcase_24 AC 1,053 ms
18,228 KB
testcase_25 AC 69 ms
12,904 KB
testcase_26 AC 1,458 ms
18,744 KB
testcase_27 AC 628 ms
12,928 KB
testcase_28 AC 1,967 ms
17,780 KB
testcase_29 TLE -
testcase_30 AC 742 ms
14,080 KB
testcase_31 AC 1,102 ms
15,388 KB
testcase_32 AC 1,854 ms
18,888 KB
testcase_33 AC 1,285 ms
16,220 KB
testcase_34 AC 1,191 ms
15,812 KB
testcase_35 AC 604 ms
13,288 KB
testcase_36 AC 540 ms
13,056 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