結果

問題 No.1702 count good string
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-10-08 22:39:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 147,584 KB
最終ジャッジ日時 2024-07-23 05:43:29
合計ジャッジ時間 9,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 43 ms
58,624 KB
testcase_03 AC 47 ms
59,648 KB
testcase_04 AC 49 ms
60,928 KB
testcase_05 AC 45 ms
59,776 KB
testcase_06 AC 44 ms
59,520 KB
testcase_07 AC 48 ms
59,392 KB
testcase_08 AC 45 ms
59,648 KB
testcase_09 AC 48 ms
61,312 KB
testcase_10 AC 48 ms
60,672 KB
testcase_11 AC 48 ms
61,568 KB
testcase_12 AC 44 ms
59,648 KB
testcase_13 AC 284 ms
146,304 KB
testcase_14 AC 288 ms
146,304 KB
testcase_15 AC 284 ms
145,792 KB
testcase_16 AC 289 ms
146,688 KB
testcase_17 AC 287 ms
146,176 KB
testcase_18 AC 288 ms
146,304 KB
testcase_19 AC 286 ms
146,048 KB
testcase_20 AC 288 ms
145,792 KB
testcase_21 AC 287 ms
145,920 KB
testcase_22 AC 292 ms
146,048 KB
testcase_23 AC 51 ms
62,080 KB
testcase_24 AC 49 ms
62,144 KB
testcase_25 AC 51 ms
62,080 KB
testcase_26 AC 50 ms
62,208 KB
testcase_27 AC 51 ms
61,952 KB
testcase_28 AC 51 ms
62,080 KB
testcase_29 AC 51 ms
62,592 KB
testcase_30 AC 51 ms
62,336 KB
testcase_31 AC 50 ms
62,208 KB
testcase_32 AC 50 ms
62,336 KB
testcase_33 AC 275 ms
146,048 KB
testcase_34 AC 270 ms
146,176 KB
testcase_35 AC 276 ms
146,304 KB
testcase_36 AC 274 ms
146,048 KB
testcase_37 AC 274 ms
146,304 KB
testcase_38 AC 272 ms
146,048 KB
testcase_39 AC 273 ms
146,048 KB
testcase_40 AC 274 ms
146,296 KB
testcase_41 AC 270 ms
146,432 KB
testcase_42 AC 272 ms
146,048 KB
testcase_43 AC 267 ms
145,792 KB
testcase_44 AC 275 ms
147,584 KB
testcase_45 AC 40 ms
52,352 KB
testcase_46 AC 38 ms
52,352 KB
testcase_47 AC 39 ms
52,480 KB
testcase_48 AC 39 ms
52,608 KB
testcase_49 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = list(" yukicoder")
aa = list(" yukicoder")
n = int(input())
s = list(input())
ans = 0
mod = 10 ** 9 + 7
for i in range(10):
    dp = [[0] * (n+1)] +  [[0] * (n+1) for _ in range(9)]
    dp[0][0] = 1
    for j in range(10):
        for k in range(1,n+ 1):
            dp[j][k] += dp[j][k-1]
            dp[j][k] %= mod
            if s[k-1] == a[j]:
                dp[j][k] += dp[j-1][k-1]
                dp[j][k] %= mod
    ans += dp[-1][-1]
    ans %= mod
    if i == 9:break
    a[i+1] = "?"
    a[i] = aa[i]
#     print(dp[-1])
print(ans)
0