結果

問題 No.2964 Obstruction Bingo
ユーザー titiatitia
提出日時 2024-11-25 03:35:05
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,029 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 549,252 KB
最終ジャッジ日時 2024-11-25 03:37:37
合計ジャッジ時間 150,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,896 KB
testcase_01 AC 38 ms
331,592 KB
testcase_02 AC 107 ms
83,444 KB
testcase_03 AC 36 ms
327,156 KB
testcase_04 AC 36 ms
61,076 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 MLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,805 ms
281,192 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,447 ms
278,596 KB
testcase_23 AC 474 ms
445,412 KB
testcase_24 AC 285 ms
107,512 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 2,362 ms
263,512 KB
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

L,K=map(int,input().split())
S=input().strip()
T=input().strip()

mod=998244353

S2=[]
T2=[]

for s in S:
    S2.append(ord(s)-97)

for t in T:
    T2.append(ord(t)-97)

A=list(map(int,input().split()))
SUM=sum(A)

INV=pow(SUM,mod-2,mod)

DP=[[0]*(K+1) for i in range(K+1)]
DP[0][0]=1
for tt in range(K):
    NDP=[[0]*(K+1) for i in range(K+1)]

    for i in range(tt+1):
        for j in range(tt+1):
            if abs(i-j)==L:
                NDP[i][j]+=DP[i][j]
                continue
            x=S2[i%len(S2)]
            y=T2[j%len(T2)]

            if x==y:
                NDP[i+1][j+1]+=DP[i][j]*A[x]*INV
                NDP[i][j]+=DP[i][j]*INV*(SUM-A[x])
            else:
                NDP[i+1][j]+=DP[i][j]*A[x]*INV
                NDP[i][j+1]+=DP[i][j]*A[y]*INV
                NDP[i][j]+=DP[i][j]*INV*(SUM-A[x]-A[y])

    DP=NDP

ANS1=0
ANS2=0

for i in range(K+1):
    for j in range(K+1):
        if i-j==L:
            ANS1+=DP[i][j]
        if j-i==L:
            ANS2+=DP[i][j]

print(ANS1%mod,ANS2%mod)
0