結果

問題 No.2964 Obstruction Bingo
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-16 16:54:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 802 ms / 2,468 ms
コード長 742 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,988 KB
最終ジャッジ日時 2024-11-16 16:54:32
合計ジャッジ時間 24,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 69 ms
68,352 KB
testcase_03 AC 40 ms
52,864 KB
testcase_04 AC 39 ms
52,208 KB
testcase_05 AC 84 ms
76,500 KB
testcase_06 AC 416 ms
78,620 KB
testcase_07 AC 136 ms
76,880 KB
testcase_08 AC 358 ms
77,468 KB
testcase_09 AC 116 ms
76,548 KB
testcase_10 AC 248 ms
77,440 KB
testcase_11 AC 346 ms
78,408 KB
testcase_12 AC 618 ms
79,128 KB
testcase_13 AC 171 ms
77,112 KB
testcase_14 AC 158 ms
76,624 KB
testcase_15 AC 95 ms
76,380 KB
testcase_16 AC 275 ms
78,544 KB
testcase_17 AC 254 ms
78,000 KB
testcase_18 AC 200 ms
77,272 KB
testcase_19 AC 323 ms
78,180 KB
testcase_20 AC 378 ms
78,584 KB
testcase_21 AC 614 ms
79,796 KB
testcase_22 AC 271 ms
78,024 KB
testcase_23 AC 188 ms
77,984 KB
testcase_24 AC 73 ms
73,908 KB
testcase_25 AC 750 ms
80,624 KB
testcase_26 AC 723 ms
80,660 KB
testcase_27 AC 741 ms
80,472 KB
testcase_28 AC 789 ms
80,640 KB
testcase_29 AC 790 ms
80,604 KB
testcase_30 AC 743 ms
80,556 KB
testcase_31 AC 773 ms
80,504 KB
testcase_32 AC 770 ms
80,840 KB
testcase_33 AC 796 ms
80,240 KB
testcase_34 AC 775 ms
80,824 KB
testcase_35 AC 778 ms
80,636 KB
testcase_36 AC 770 ms
80,640 KB
testcase_37 AC 790 ms
80,720 KB
testcase_38 AC 802 ms
80,988 KB
testcase_39 AC 738 ms
80,132 KB
testcase_40 AC 779 ms
80,380 KB
testcase_41 AC 776 ms
80,240 KB
testcase_42 AC 736 ms
80,172 KB
testcase_43 AC 785 ms
80,328 KB
testcase_44 AC 798 ms
80,908 KB
testcase_45 AC 195 ms
78,724 KB
testcase_46 AC 43 ms
54,016 KB
testcase_47 AC 42 ms
53,632 KB
testcase_48 AC 98 ms
76,160 KB
testcase_49 AC 169 ms
77,144 KB
testcase_50 AC 329 ms
78,640 KB
testcase_51 AC 726 ms
80,236 KB
権限があれば一括ダウンロードができます

ソースコード

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
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%M
        nq[i][l]+=q[i][l]*(A-a[s[i]])*iA%M
      else:
        nq[(i+1)%L][l+1]+=q[i][l]*a[s[i]]*iA%M
        nq[i][l-1]+=q[i][l]*a[t[j]]*iA%M
        nq[i][l]+=q[i][l]*(A-a[s[i]]-a[t[j]])*iA%M
  q=nq
  for i in range(L):
    w1+=q[i][L]
    w2+=q[i][-L]
print(w1%M,w2%M)
0