結果

問題 No.1702 count good string
ユーザー O2MTO2MT
提出日時 2021-10-08 22:50:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 183,768 KB
最終ジャッジ日時 2024-07-23 05:58:24
合計ジャッジ時間 10,349 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 42 ms
58,112 KB
testcase_04 AC 43 ms
57,856 KB
testcase_05 AC 42 ms
57,984 KB
testcase_06 AC 46 ms
57,984 KB
testcase_07 AC 44 ms
58,292 KB
testcase_08 AC 43 ms
57,856 KB
testcase_09 AC 43 ms
57,856 KB
testcase_10 AC 41 ms
58,496 KB
testcase_11 AC 44 ms
57,984 KB
testcase_12 AC 43 ms
57,600 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 303 ms
183,768 KB
testcase_17 AC 319 ms
183,284 KB
testcase_18 AC 312 ms
183,116 KB
testcase_19 WA -
testcase_20 AC 308 ms
183,152 KB
testcase_21 AC 306 ms
183,132 KB
testcase_22 AC 306 ms
182,892 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 304 ms
183,148 KB
testcase_44 AC 316 ms
183,160 KB
testcase_45 AC 39 ms
52,608 KB
testcase_46 AC 39 ms
52,096 KB
testcase_47 AC 40 ms
52,096 KB
testcase_48 AC 39 ms
52,224 KB
testcase_49 AC 38 ms
51,840 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 != '?':
    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])
0