結果

問題 No.2964 Obstruction Bingo
ユーザー titiatitia
提出日時 2024-11-25 03:37:11
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,192 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 555,368 KB
最終ジャッジ日時 2024-11-25 03:39:27
合計ジャッジ時間 135,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,676 KB
testcase_01 AC 39 ms
327,336 KB
testcase_02 AC 128 ms
84,000 KB
testcase_03 AC 40 ms
328,564 KB
testcase_04 AC 40 ms
60,104 KB
testcase_05 MLE -
testcase_06 TLE -
testcase_07 AC 510 ms
367,520 KB
testcase_08 TLE -
testcase_09 MLE -
testcase_10 TLE -
testcase_11 AC 879 ms
401,172 KB
testcase_12 TLE -
testcase_13 MLE -
testcase_14 TLE -
testcase_15 AC 821 ms
407,272 KB
testcase_16 AC 1,111 ms
161,992 KB
testcase_17 AC 706 ms
386,948 KB
testcase_18 AC 2,010 ms
279,260 KB
testcase_19 AC 813 ms
399,052 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 445 ms
97,552 KB
testcase_23 AC 240 ms
354,244 KB
testcase_24 AC 239 ms
87,188 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 TLE -
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]*(SUM-A[x])*INV
                NDP[i][j]%=mod
                NDP[i+1][j+1]%=mod
            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]*(SUM-A[x]-A[y])*INV
                NDP[i+1][j]%=mod
                NDP[i][j+1]%=mod
                NDP[i][j]%=mod

    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