結果

問題 No.2964 Obstruction Bingo
ユーザー ニックネームニックネーム
提出日時 2024-11-16 17:36:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,108 ms / 2,468 ms
コード長 1,071 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,668 KB
最終ジャッジ日時 2024-11-16 17:37:40
合計ジャッジ時間 44,050 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 43 ms
52,608 KB
testcase_02 AC 66 ms
66,944 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 56 ms
62,464 KB
testcase_05 AC 113 ms
75,904 KB
testcase_06 AC 707 ms
78,060 KB
testcase_07 AC 201 ms
77,492 KB
testcase_08 AC 574 ms
78,028 KB
testcase_09 AC 156 ms
76,876 KB
testcase_10 AC 447 ms
78,012 KB
testcase_11 AC 535 ms
78,168 KB
testcase_12 AC 1,594 ms
78,596 KB
testcase_13 AC 353 ms
77,396 KB
testcase_14 AC 237 ms
77,140 KB
testcase_15 AC 144 ms
77,004 KB
testcase_16 AC 403 ms
78,128 KB
testcase_17 AC 328 ms
78,056 KB
testcase_18 AC 439 ms
77,472 KB
testcase_19 AC 485 ms
77,656 KB
testcase_20 AC 939 ms
77,832 KB
testcase_21 AC 1,578 ms
78,868 KB
testcase_22 AC 522 ms
78,292 KB
testcase_23 AC 260 ms
77,964 KB
testcase_24 AC 110 ms
76,240 KB
testcase_25 AC 1,399 ms
79,704 KB
testcase_26 AC 1,388 ms
79,900 KB
testcase_27 AC 1,403 ms
80,192 KB
testcase_28 AC 1,373 ms
79,696 KB
testcase_29 AC 1,413 ms
79,948 KB
testcase_30 AC 1,391 ms
80,668 KB
testcase_31 AC 1,343 ms
79,836 KB
testcase_32 AC 1,402 ms
80,100 KB
testcase_33 AC 1,409 ms
80,088 KB
testcase_34 AC 1,404 ms
80,168 KB
testcase_35 AC 1,343 ms
79,956 KB
testcase_36 AC 1,396 ms
80,200 KB
testcase_37 AC 1,412 ms
80,516 KB
testcase_38 AC 1,355 ms
80,084 KB
testcase_39 AC 2,108 ms
79,584 KB
testcase_40 AC 1,357 ms
79,116 KB
testcase_41 AC 1,381 ms
80,312 KB
testcase_42 AC 1,385 ms
79,884 KB
testcase_43 AC 1,385 ms
79,936 KB
testcase_44 AC 1,400 ms
80,400 KB
testcase_45 AC 279 ms
77,880 KB
testcase_46 AC 75 ms
70,272 KB
testcase_47 AC 102 ms
69,888 KB
testcase_48 AC 98 ms
76,160 KB
testcase_49 AC 273 ms
77,896 KB
testcase_50 AC 562 ms
78,196 KB
testcase_51 AC 1,355 ms
79,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,k = map(int,input().split())
s = [ord(v)-97 for v in input()]
t = [ord(v)-97 for v in input()]
a = list(map(int,input().split()))
dp = [[0]*2*l for _ in range(2*l)]
dp[0][0] = 1; x = y = 0; z = 998244353
n = sum(a); d = pow(n,-1,z)
for _ in range(k):
    eq = [[0]*2*l for _ in range(2*l)]
    for i in range(2*l):
        for j in range(2*l):
            if i>=l<=j or abs(i-j)>=l or dp[i][j]==0: continue
            for v,c in enumerate(a):
                p = dp[i][j]*c%z*d%z
                if s[i%l]==t[j%l]==v:
                    if i+1>=l<=j+1: eq[(i+1)%l][(j+1)%l] += p
                    else: eq[i+1][j+1] += p
                elif s[i%l]==v:
                    if i+1-j==l: x += p
                    elif i+1>=l<=j: eq[(i+1)%l][j%l] += p
                    else: eq[i+1][j] += p
                elif t[j%l]==v:
                    if j+1-i==l: y += p
                    elif i>=l<=j+1: eq[i%l][(j+1)%l] += p
                    else: eq[i][j+1] += p
                else: eq[i][j] += p
    dp = [[eqij%z for eqij in eqi] for eqi in eq]
print(x%z,y%z)
0