結果

問題 No.2964 Obstruction Bingo
ユーザー 遭難者遭難者
提出日時 2024-10-26 23:06:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,835 ms / 2,468 ms
コード長 1,407 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 77,676 KB
最終ジャッジ日時 2024-10-26 23:58:44
合計ジャッジ時間 41,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,708 KB
testcase_01 AC 51 ms
64,452 KB
testcase_02 AC 53 ms
66,124 KB
testcase_03 AC 45 ms
62,436 KB
testcase_04 AC 50 ms
64,016 KB
testcase_05 AC 83 ms
76,284 KB
testcase_06 AC 758 ms
77,140 KB
testcase_07 AC 161 ms
76,828 KB
testcase_08 AC 588 ms
77,208 KB
testcase_09 AC 122 ms
76,968 KB
testcase_10 AC 424 ms
77,004 KB
testcase_11 AC 503 ms
77,288 KB
testcase_12 AC 1,189 ms
77,280 KB
testcase_13 AC 277 ms
76,348 KB
testcase_14 AC 218 ms
76,984 KB
testcase_15 AC 105 ms
76,320 KB
testcase_16 AC 347 ms
77,140 KB
testcase_17 AC 285 ms
76,932 KB
testcase_18 AC 301 ms
76,552 KB
testcase_19 AC 514 ms
77,248 KB
testcase_20 AC 830 ms
77,260 KB
testcase_21 AC 1,007 ms
77,336 KB
testcase_22 AC 377 ms
77,492 KB
testcase_23 AC 212 ms
77,068 KB
testcase_24 AC 81 ms
76,384 KB
testcase_25 AC 1,277 ms
77,160 KB
testcase_26 AC 1,331 ms
77,676 KB
testcase_27 AC 1,324 ms
77,052 KB
testcase_28 AC 1,357 ms
77,324 KB
testcase_29 AC 1,835 ms
77,288 KB
testcase_30 AC 1,337 ms
77,196 KB
testcase_31 AC 1,585 ms
77,320 KB
testcase_32 AC 1,360 ms
77,324 KB
testcase_33 AC 1,317 ms
77,180 KB
testcase_34 AC 1,318 ms
77,200 KB
testcase_35 AC 1,621 ms
77,040 KB
testcase_36 AC 1,352 ms
77,076 KB
testcase_37 AC 1,301 ms
77,308 KB
testcase_38 AC 1,298 ms
77,328 KB
testcase_39 AC 1,800 ms
77,276 KB
testcase_40 AC 1,350 ms
77,208 KB
testcase_41 AC 1,347 ms
77,340 KB
testcase_42 AC 1,350 ms
77,204 KB
testcase_43 AC 1,353 ms
77,436 KB
testcase_44 AC 1,310 ms
77,644 KB
testcase_45 AC 183 ms
76,236 KB
testcase_46 AC 50 ms
64,848 KB
testcase_47 AC 50 ms
65,932 KB
testcase_48 AC 96 ms
76,004 KB
testcase_49 AC 199 ms
76,388 KB
testcase_50 AC 582 ms
77,316 KB
testcase_51 AC 1,478 ms
77,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline
L, K = map(int, input().split())
S = [ord(c) - ord("a") for c in input().strip()]
T = [ord(c) - ord("a") for c in input().strip()]
a = list(map(int, input().split()))
a_sum = sum(a)
MOD = 998244353
a_sum_inv = pow(a_sum, MOD - 2, MOD)
for i in range(26):
    a[i] = a[i] * a_sum_inv % MOD
d = [[0 for _ in range(2 * L - 1)] for _ in range(L)]
d[0][L - 1] = 1
x, y = 0, 0
dd = [[0 for _ in range(2 * L - 1)] for _ in range(L)]
for _ in range(K):
    for i in range(L):
        for j in range(2 * L - 1):
            dd[i][j] = 0
    for c in range(26):
        for i in range(L):
            for j in range(2 * L - 1):
                if d[i][j] == 0:
                    continue
                ad = d[i][j] * a[c] % MOD
                xb, yb = S[i] == c, T[(i + j - L + 1) % L] == c
                if xb and yb:
                    dd[(i + 1) % L][j] += ad
                elif xb:
                    if j == 0:
                        x += ad
                    else:
                        dd[(i + 1) % L][j - 1] += ad
                elif yb:
                    if j == 2 * L - 2:
                        y += ad
                    else:
                        dd[i][j + 1] += ad
                else:
                    dd[i][j] += ad
    for i in range(L):
        for j in range(2 * L - 1):
            d[i][j] = dd[i][j] % MOD
print(x % MOD, y % MOD)
0