結果

問題 No.2964 Obstruction Bingo
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-16 16:46:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,263 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 170,572 KB
最終ジャッジ日時 2024-11-16 16:48:12
合計ジャッジ時間 99,911 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,472 KB
testcase_01 AC 48 ms
144,440 KB
testcase_02 AC 68 ms
75,008 KB
testcase_03 AC 52 ms
70,056 KB
testcase_04 AC 54 ms
68,224 KB
testcase_05 AC 114 ms
162,472 KB
testcase_06 AC 1,948 ms
87,408 KB
testcase_07 AC 264 ms
165,004 KB
testcase_08 AC 1,335 ms
85,644 KB
testcase_09 AC 185 ms
163,892 KB
testcase_10 AC 867 ms
85,208 KB
testcase_11 AC 2,037 ms
170,572 KB
testcase_12 TLE -
testcase_13 AC 381 ms
165,884 KB
testcase_14 AC 320 ms
84,008 KB
testcase_15 AC 155 ms
163,724 KB
testcase_16 AC 955 ms
85,948 KB
testcase_17 AC 747 ms
166,024 KB
testcase_18 AC 547 ms
85,552 KB
testcase_19 AC 1,879 ms
90,256 KB
testcase_20 AC 1,551 ms
86,520 KB
testcase_21 TLE -
testcase_22 AC 1,356 ms
89,260 KB
testcase_23 AC 598 ms
87,120 KB
testcase_24 AC 106 ms
82,304 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 AC 434 ms
80,104 KB
testcase_46 AC 50 ms
60,672 KB
testcase_47 AC 48 ms
60,416 KB
testcase_48 AC 184 ms
76,396 KB
testcase_49 AC 333 ms
79,076 KB
testcase_50 AC 1,279 ms
79,716 KB
testcase_51 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

L,K=map(int,input().split())
s=list(input())
for i in range(L):
  s[i]=ord(s[i])-ord("a")
t=list(input())
for i in range(L):
  t[i]=ord(t[i])-ord("a")
a=list(map(int,input().split()))
M=998244353
A=sum(a)
iA=pow(A,M-2,M)
X=10**10
w1=0
w2=0
q=[[[0]*(2*L+1) for j in range(L)] for i in range(L)]
nq=[[[0]*(2*L+1) for j in range(L)] for i in range(L)]
q[0][0][0]=1
import gc
for _ in range(K):
  for i in range(L):
    for j in range(L):
      for l in range(-L+1,L):
        if q[i][j][l]==0:
          continue
        if s[i]==t[j]:
          nq[(i+1)%L][(j+1)%L][l]+=q[i][j][l]*a[s[i]]*iA
          nq[(i+1)%L][(j+1)%L][l]%=M
          nq[i][j][l]+=q[i][j][l]*(A-a[s[i]])*iA
          nq[i][j][l]%=M
        else:
          nq[(i+1)%L][j][l+1]+=q[i][j][l]*a[s[i]]*iA
          nq[(i+1)%L][j][l+1]%=M
          if l+1==L:
            w1+=q[i][j][l]*a[s[i]]*iA
            w1%=M
          nq[i][(j+1)%L][l-1]+=q[i][j][l]*a[t[j]]*iA
          nq[i][(j+1)%L][l-1]%=M
          if l-1==-L:
            w2+=q[i][j][l]*a[t[j]]*iA
            w2%=M
          nq[i][j][l]+=q[i][j][l]*(A-a[s[i]]-a[t[j]])*iA
          nq[i][j][l]%=M
  for i in range(L):
    for j in range(L):
      for l in range(-L,L+1):
        q[i][j][l]=nq[i][j][l]
        nq[i][j][l]=0
print(w1,w2)
0