結果
問題 | No.1702 count good string |
ユーザー | NatsubiSogan |
提出日時 | 2021-10-08 22:26:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 598 bytes |
コンパイル時間 | 333 ms |
コンパイル使用メモリ | 82,408 KB |
実行使用メモリ | 227,600 KB |
最終ジャッジ日時 | 2024-07-23 05:02:56 |
合計ジャッジ時間 | 17,069 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,924 KB |
testcase_01 | AC | 40 ms
53,264 KB |
testcase_02 | AC | 43 ms
60,516 KB |
testcase_03 | AC | 47 ms
62,564 KB |
testcase_04 | AC | 51 ms
63,764 KB |
testcase_05 | AC | 48 ms
64,108 KB |
testcase_06 | AC | 48 ms
62,780 KB |
testcase_07 | AC | 50 ms
63,876 KB |
testcase_08 | AC | 49 ms
62,656 KB |
testcase_09 | AC | 52 ms
64,860 KB |
testcase_10 | AC | 50 ms
64,948 KB |
testcase_11 | AC | 52 ms
64,508 KB |
testcase_12 | AC | 49 ms
63,672 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 64 ms
73,836 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 64 ms
73,852 KB |
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 | 604 ms
227,048 KB |
testcase_44 | AC | 599 ms
227,304 KB |
testcase_45 | AC | 37 ms
52,752 KB |
testcase_46 | AC | 38 ms
52,396 KB |
testcase_47 | AC | 38 ms
53,484 KB |
testcase_48 | AC | 38 ms
53,300 KB |
testcase_49 | AC | 40 ms
54,536 KB |
ソースコード
ans = 0 n = int(input()) s = input() ans = 0 def main(s, t): global ans n = len(s) t = list(t) dp = [[0] * (len(t) + 1) for i in range(n + 1)] dp[0][0] = 1 mod = 10 ** 9 + 7 for i in range(n): try: ind = t.index(s[i]) except: ind = len(t) + 1 for j in range(len(t) + 1): dp[i + 1][j] += dp[i][j] if j == ind: dp[i + 1][j + 1] += dp[i][j]; dp[i + 1][j + 1] %= mod dp[i + 1][j] %= mod ans += dp[-1][-1] ts = ["yukicoder", "?ukicoder", "y?kicoder", "yu?icoder", "yuk?coder", "yuki?oder", "yukic?der", "yukico?er", "yukicod?r", "yukicode?"] for t in ts: main(s, t) print(ans)