結果

問題 No.2964 Obstruction Bingo
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-16 16:52:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 742 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 558,828 KB
最終ジャッジ日時 2024-11-16 16:55:11
合計ジャッジ時間 118,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,216 KB
testcase_01 AC 42 ms
326,152 KB
testcase_02 AC 88 ms
79,104 KB
testcase_03 AC 42 ms
327,176 KB
testcase_04 AC 42 ms
57,472 KB
testcase_05 AC 165 ms
352,764 KB
testcase_06 TLE -
testcase_07 AC 436 ms
387,456 KB
testcase_08 TLE -
testcase_09 AC 474 ms
378,528 KB
testcase_10 TLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 MLE -
testcase_14 AC 1,496 ms
273,096 KB
testcase_15 AC 207 ms
357,900 KB
testcase_16 AC 1,960 ms
278,188 KB
testcase_17 MLE -
testcase_18 AC 1,752 ms
274,796 KB
testcase_19 MLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,459 ms
277,560 KB
testcase_23 AC 607 ms
427,872 KB
testcase_24 AC 99 ms
81,408 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 643 ms
128,556 KB
testcase_46 AC 52 ms
337,300 KB
testcase_47 AC 48 ms
62,720 KB
testcase_48 AC 142 ms
77,840 KB
testcase_49 AC 1,414 ms
267,556 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 i in range(L)]
q[0][0]=1
import gc
for _ in range(K):
  nq=[[0]*(2*L+1) for i in range(L)]
  for i in range(L):
    for l in range(-L+1,L):
      j=(i-l)%L
      if s[i]==t[j]:
        nq[(i+1)%L][l]+=q[i][l]*a[s[i]]*iA
        nq[i][l]+=q[i][l]*(A-a[s[i]])*iA
      else:
        nq[(i+1)%L][l+1]+=q[i][l]*a[s[i]]*iA
        nq[i][l-1]+=q[i][l]*a[t[j]]*iA
        nq[i][l]+=q[i][l]*(A-a[s[i]]-a[t[j]])*iA
  q=nq
  for i in range(L):
    w1+=q[i][L]
    w2+=q[i][-L]
print(w1%M,w2%M)
0