結果

問題 No.1702 count good string
ユーザー O2MTO2MT
提出日時 2021-10-08 22:53:49
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 624 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 183,512 KB
最終ジャッジ日時 2024-07-23 06:04:31
合計ジャッジ時間 9,077 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,480 KB
testcase_01 RE -
testcase_02 AC 37 ms
52,656 KB
testcase_03 AC 41 ms
58,424 KB
testcase_04 AC 40 ms
59,276 KB
testcase_05 AC 40 ms
58,440 KB
testcase_06 AC 40 ms
57,968 KB
testcase_07 AC 40 ms
59,040 KB
testcase_08 AC 41 ms
58,388 KB
testcase_09 AC 40 ms
58,772 KB
testcase_10 AC 43 ms
59,304 KB
testcase_11 AC 44 ms
58,164 KB
testcase_12 AC 41 ms
58,660 KB
testcase_13 AC 299 ms
183,360 KB
testcase_14 AC 287 ms
183,500 KB
testcase_15 AC 294 ms
182,984 KB
testcase_16 AC 290 ms
183,508 KB
testcase_17 AC 303 ms
183,376 KB
testcase_18 AC 296 ms
183,256 KB
testcase_19 AC 292 ms
182,968 KB
testcase_20 AC 299 ms
183,120 KB
testcase_21 AC 298 ms
182,984 KB
testcase_22 AC 301 ms
183,100 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 WA -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 WA -
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 289 ms
183,360 KB
testcase_44 AC 303 ms
183,372 KB
testcase_45 AC 36 ms
52,448 KB
testcase_46 AC 37 ms
52,700 KB
testcase_47 AC 37 ms
53,340 KB
testcase_48 AC 37 ms
53,484 KB
testcase_49 AC 37 ms
53,620 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 k in range(M):
    dp[i][k][0] = dp[i-1][k][0]
    dp[i][k][1] = dp[i-1][k][1]
  if s != '?':
    for k in range(M):
      if s == alp[k]:
        j = k
        break
    dp[i][j][0] += dp[i-1][j-1][0]
    dp[i][j][0] %= MOD
    dp[i][j][1] += dp[i-1][j-1][1]
    dp[i][j][1] %= MOD
  else:
    for k in range(1,M):
      dp[i][k][1] += dp[i-1][k-1][0]
      dp[i][k][1] %= MOD

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