結果

問題 No.1239 Multiplication -2
ユーザー eSeFeSeF
提出日時 2020-09-12 00:43:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 1,099 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,804 KB
最終ジャッジ日時 2024-06-09 05:57:45
合計ジャッジ時間 7,485 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 32 ms
11,008 KB
testcase_04 AC 34 ms
10,880 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 111 ms
13,596 KB
testcase_16 AC 170 ms
15,540 KB
testcase_17 AC 225 ms
20,508 KB
testcase_18 AC 274 ms
20,632 KB
testcase_19 AC 200 ms
20,076 KB
testcase_20 AC 245 ms
21,804 KB
testcase_21 AC 378 ms
19,808 KB
testcase_22 AC 292 ms
19,616 KB
testcase_23 AC 307 ms
19,944 KB
testcase_24 AC 235 ms
18,320 KB
testcase_25 AC 85 ms
16,108 KB
testcase_26 AC 312 ms
18,836 KB
testcase_27 AC 131 ms
13,268 KB
testcase_28 AC 372 ms
19,268 KB
testcase_29 AC 394 ms
19,520 KB
testcase_30 AC 166 ms
14,436 KB
testcase_31 AC 231 ms
16,092 KB
testcase_32 AC 368 ms
20,068 KB
testcase_33 AC 266 ms
17,156 KB
testcase_34 AC 248 ms
16,696 KB
testcase_35 AC 136 ms
13,932 KB
testcase_36 AC 127 ms
13,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
MOD=998244353
def main():
    N=int(input())
    a=list(map(int,input().split()))
    pw2=[1]*(N+1)
    for i in range(N):
        pw2[i+1]=(pw2[i]*2)%MOD
    ans=0
    for i in range(N):
        if abs(a[i])==2:
            prod=0
            cl=[pw2[max(0,i-1)],0]
            for j in range(i-1,-1,-1):
                if abs(a[j])==1:
                    if a[j]==-1:
                        prod^=1
                    cl[prod]=(cl[prod]+pw2[max(0,j-1)])%MOD
                else:
                    break
            prod=0
            cr=[pw2[max(0,N-2-i)],0]
            for j in range(i+1,N):
                if abs(a[j])==1:
                    if a[j]==-1:
                        prod^=1
                    cr[prod]=(cr[prod]+pw2[max(0,N-2-j)])%MOD
                else:
                    break
            if a[i]==2:
                ans=(ans+cl[0]*cr[1]+cl[1]*cr[0])%MOD
            else:
                ans=(ans+cl[0]*cr[0]+cl[1]*cr[1])%MOD
    ans*=pow(pow(2,N-1,MOD),MOD-2,MOD)
    ans%=MOD
    print(ans)
if __name__=='__main__':
    main()
0