結果

問題 No.2964 Obstruction Bingo
ユーザー hato336hato336
提出日時 2024-11-16 16:07:07
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,220 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 1,658,972 KB
最終ジャッジ日時 2024-11-16 16:08:46
合計ジャッジ時間 82,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
60,324 KB
testcase_01 AC 55 ms
62,336 KB
testcase_02 AC 111 ms
84,224 KB
testcase_03 AC 54 ms
62,848 KB
testcase_04 AC 54 ms
62,976 KB
testcase_05 MLE -
testcase_06 TLE -
testcase_07 AC 421 ms
138,176 KB
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 1,242 ms
151,932 KB
testcase_12 TLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 830 ms
224,504 KB
testcase_16 AC 727 ms
202,976 KB
testcase_17 AC 517 ms
155,884 KB
testcase_18 AC 1,225 ms
380,544 KB
testcase_19 AC 627 ms
153,356 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 369 ms
107,212 KB
testcase_23 AC 187 ms
86,552 KB
testcase_24 AC 174 ms
102,192 KB
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 MLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
l,k = map(int,input().split())
s = list(input().rstrip())
t = list(input().rstrip())
for i in range(l):
    s[i] = ord(s[i]) - ord('a')
    t[i] = ord(t[i]) - ord('a')
a = list(map(int,input().split()))
mod = 998244353
inv = pow(sum(a),mod-2,mod)
su = sum(a)
dp = [[[0 for i in range(k+2)] for j in range(k+2)] for rf2effe in range(k+2)]
dp[0][0][0] = 1
ans = [0,0]
for i in range(k+1):
    for j in range(k+1):
        for m in range(k+1):
            if abs(j-m) == l:
                if j > m:
                    ans[0] += dp[i][j][m]
                    ans[0] %= mod
                else:
                    ans[1] += dp[i][j][m]
                    ans[1] %= mod
                continue
            if abs(j-m) > l:
                continue
            if s[j%l] != t[m%l]:
                dp[i+1][j][m] += (dp[i][j][m] * (su - a[s[j%l]] - a[t[m%l]]) * inv) % mod
                dp[i+1][j+1][m] += (dp[i][j][m] * a[s[j%l]] * inv) % mod
                dp[i+1][j][m+1] += (dp[i][j][m] * a[t[m%l]] * inv) % mod
            else:
                dp[i+1][j][m] += (dp[i][j][m] * (su - a[s[j%l]]) * inv) % mod
                dp[i+1][j+1][m+1] += (dp[i][j][m] * a[s[j%l]] * inv) % mod
print(*ans)
0