結果

問題 No.2964 Obstruction Bingo
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-16 16:35:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,046 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 553,096 KB
最終ジャッジ日時 2024-11-16 16:37:24
合計ジャッジ時間 125,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,344 KB
testcase_01 AC 51 ms
340,284 KB
testcase_02 AC 143 ms
82,572 KB
testcase_03 AC 66 ms
335,696 KB
testcase_04 AC 74 ms
72,064 KB
testcase_05 AC 217 ms
359,664 KB
testcase_06 TLE -
testcase_07 AC 805 ms
373,172 KB
testcase_08 TLE -
testcase_09 AC 439 ms
364,268 KB
testcase_10 AC 2,466 ms
194,460 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 913 ms
384,032 KB
testcase_14 AC 727 ms
96,920 KB
testcase_15 AC 286 ms
86,160 KB
testcase_16 TLE -
testcase_17 MLE -
testcase_18 AC 1,489 ms
144,976 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 MLE -
testcase_24 AC 165 ms
83,244 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 1,401 ms
102,744 KB
testcase_46 AC 49 ms
328,432 KB
testcase_47 AC 47 ms
60,288 KB
testcase_48 AC 367 ms
77,908 KB
testcase_49 AC 1,019 ms
92,008 KB
testcase_50 TLE -
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)]
q[0][0][0]=1
for _ in range(K):
  nq=[[[0]*(2*L+1) for j in range(L)] for i in range(L)]
  for i in range(L):
    for j in range(L):
      for l in range(-L+1,L):
        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
          nq[i][(j+1)%L][l-1]+=q[i][j][l]*a[t[j]]*iA
          nq[i][(j+1)%L][l-1]%=M
          nq[i][j][l]+=q[i][j][l]*(A-a[s[i]]-a[t[j]])*iA
          nq[i][j][l]%=M
  q=nq
  for i in range(L):
    for j in range(L):
      w1+=q[i][j][L]
      w1%=M
      w2+=q[i][j][-L]
      w2%=M
print(w1,w2)
0