結果

問題 No.1702 count good string
ユーザー O2MTO2MT
提出日時 2021-10-08 22:46:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 602 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 183,896 KB
最終ジャッジ日時 2024-07-23 05:53:19
合計ジャッジ時間 9,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,764 KB
testcase_01 AC 37 ms
53,340 KB
testcase_02 AC 39 ms
52,468 KB
testcase_03 AC 42 ms
58,652 KB
testcase_04 AC 41 ms
59,128 KB
testcase_05 AC 41 ms
58,084 KB
testcase_06 AC 41 ms
58,652 KB
testcase_07 AC 42 ms
58,904 KB
testcase_08 AC 41 ms
59,088 KB
testcase_09 AC 42 ms
58,420 KB
testcase_10 AC 42 ms
59,564 KB
testcase_11 AC 42 ms
58,380 KB
testcase_12 AC 42 ms
58,256 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 308 ms
183,136 KB
testcase_17 AC 317 ms
183,252 KB
testcase_18 AC 317 ms
182,984 KB
testcase_19 WA -
testcase_20 AC 309 ms
183,116 KB
testcase_21 AC 311 ms
183,112 KB
testcase_22 AC 312 ms
183,368 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 301 ms
182,996 KB
testcase_44 AC 315 ms
183,492 KB
testcase_45 AC 38 ms
53,296 KB
testcase_46 AC 37 ms
53,084 KB
testcase_47 AC 39 ms
53,620 KB
testcase_48 AC 39 ms
52,556 KB
testcase_49 AC 38 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(str(input()))
MOD = 10**9+7
alp = list(' yukicoder')
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(10):
    dp[i][j][0] = dp[i-1][j][0]
    dp[i][j][1] = dp[i-1][j][1]
  if s != '?':
    for k in range(10):
      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,10):
      dp[i][k][1] += dp[i][k-1][0]
      dp[i][k][1] %= MOD

print(dp[N][9][0]+dp[N][9][1])
0