結果

問題 No.1702 count good string
ユーザー O2MTO2MT
提出日時 2021-10-08 22:55:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 183,500 KB
最終ジャッジ日時 2024-07-23 06:07:48
合計ジャッジ時間 9,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 46 ms
57,728 KB
testcase_04 AC 42 ms
58,112 KB
testcase_05 AC 43 ms
57,856 KB
testcase_06 AC 43 ms
57,600 KB
testcase_07 AC 43 ms
57,856 KB
testcase_08 AC 43 ms
57,984 KB
testcase_09 AC 44 ms
57,600 KB
testcase_10 AC 44 ms
57,728 KB
testcase_11 AC 43 ms
58,240 KB
testcase_12 AC 44 ms
58,112 KB
testcase_13 AC 325 ms
183,340 KB
testcase_14 AC 314 ms
183,016 KB
testcase_15 AC 319 ms
183,268 KB
testcase_16 AC 317 ms
182,884 KB
testcase_17 AC 324 ms
183,396 KB
testcase_18 AC 316 ms
183,344 KB
testcase_19 AC 311 ms
183,008 KB
testcase_20 AC 311 ms
183,500 KB
testcase_21 AC 312 ms
183,136 KB
testcase_22 AC 309 ms
183,024 KB
testcase_23 AC 55 ms
65,664 KB
testcase_24 AC 56 ms
65,792 KB
testcase_25 AC 55 ms
66,176 KB
testcase_26 AC 55 ms
66,176 KB
testcase_27 AC 60 ms
66,048 KB
testcase_28 AC 57 ms
65,920 KB
testcase_29 AC 55 ms
65,664 KB
testcase_30 AC 56 ms
66,176 KB
testcase_31 AC 56 ms
65,920 KB
testcase_32 AC 54 ms
65,792 KB
testcase_33 AC 314 ms
183,108 KB
testcase_34 AC 309 ms
183,396 KB
testcase_35 AC 314 ms
183,100 KB
testcase_36 AC 314 ms
183,456 KB
testcase_37 AC 318 ms
182,888 KB
testcase_38 AC 317 ms
183,228 KB
testcase_39 AC 311 ms
183,392 KB
testcase_40 AC 313 ms
183,180 KB
testcase_41 AC 316 ms
183,096 KB
testcase_42 AC 311 ms
183,268 KB
testcase_43 AC 306 ms
183,140 KB
testcase_44 AC 318 ms
183,344 KB
testcase_45 AC 40 ms
52,480 KB
testcase_46 AC 38 ms
52,096 KB
testcase_47 AC 38 ms
52,352 KB
testcase_48 AC 39 ms
52,352 KB
testcase_49 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(str(input()))
MOD = 10**9+7
alp = list(' yukicoder')
M = len(alp)
dp = [[[0,0] for _ in range(11)] for _ in range(N+1)]
dp[0][0][0] = 1

for i in range(1,N+1):
  s = S[i-1]
  for j in range(M):
    dp[i][j][0] = dp[i-1][j][0]
    dp[i][j][1] = dp[i-1][j][1]
  if s != '?':
    l = -1
    for k in range(M):
      if s == alp[k]:
        l = k
        break
    if l == -1:
      continue
    dp[i][l][0] += dp[i-1][l-1][0]
    dp[i][l][0] %= MOD
    dp[i][l][1] += dp[i-1][l-1][1]
    dp[i][l][1] %= MOD
  else:
    for m in range(1,M):
      dp[i][m][1] += dp[i-1][m-1][0]
      dp[i][m][1] %= MOD

print((dp[N][M-1][0]+dp[N][M-1][1])%MOD)
0