結果

問題 No.2964 Obstruction Bingo
ユーザー 遭難者遭難者
提出日時 2024-10-26 23:04:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,975 ms / 2,468 ms
コード長 1,328 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 77,820 KB
最終ジャッジ日時 2024-10-26 23:58:21
合計ジャッジ時間 42,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,812 KB
testcase_01 AC 51 ms
64,760 KB
testcase_02 AC 58 ms
67,224 KB
testcase_03 AC 48 ms
61,976 KB
testcase_04 AC 50 ms
62,724 KB
testcase_05 AC 92 ms
76,352 KB
testcase_06 AC 802 ms
77,400 KB
testcase_07 AC 166 ms
76,728 KB
testcase_08 AC 609 ms
77,400 KB
testcase_09 AC 125 ms
76,448 KB
testcase_10 AC 443 ms
77,052 KB
testcase_11 AC 518 ms
77,812 KB
testcase_12 AC 1,033 ms
77,376 KB
testcase_13 AC 280 ms
76,504 KB
testcase_14 AC 225 ms
76,340 KB
testcase_15 AC 105 ms
76,336 KB
testcase_16 AC 346 ms
77,432 KB
testcase_17 AC 282 ms
77,052 KB
testcase_18 AC 309 ms
77,168 KB
testcase_19 AC 522 ms
77,152 KB
testcase_20 AC 842 ms
77,220 KB
testcase_21 AC 1,033 ms
77,572 KB
testcase_22 AC 386 ms
77,296 KB
testcase_23 AC 217 ms
77,128 KB
testcase_24 AC 83 ms
76,656 KB
testcase_25 AC 1,382 ms
77,452 KB
testcase_26 AC 1,415 ms
77,820 KB
testcase_27 AC 1,373 ms
77,584 KB
testcase_28 AC 1,456 ms
77,320 KB
testcase_29 AC 1,975 ms
77,428 KB
testcase_30 AC 1,400 ms
77,364 KB
testcase_31 AC 1,445 ms
77,456 KB
testcase_32 AC 1,383 ms
77,564 KB
testcase_33 AC 1,349 ms
77,588 KB
testcase_34 AC 1,387 ms
77,324 KB
testcase_35 AC 1,349 ms
77,172 KB
testcase_36 AC 1,393 ms
77,332 KB
testcase_37 AC 1,371 ms
77,168 KB
testcase_38 AC 1,417 ms
77,732 KB
testcase_39 AC 1,796 ms
77,548 KB
testcase_40 AC 1,390 ms
77,200 KB
testcase_41 AC 1,391 ms
77,592 KB
testcase_42 AC 1,380 ms
77,100 KB
testcase_43 AC 1,393 ms
77,352 KB
testcase_44 AC 1,397 ms
77,488 KB
testcase_45 AC 190 ms
76,988 KB
testcase_46 AC 55 ms
68,040 KB
testcase_47 AC 55 ms
66,580 KB
testcase_48 AC 102 ms
76,324 KB
testcase_49 AC 211 ms
77,032 KB
testcase_50 AC 585 ms
77,220 KB
testcase_51 AC 1,544 ms
77,572 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
for _ in range(K):
    dd = [[0 for _ in range(2 * L - 1)] for _ in range(L)]
    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