結果

問題 No.1702 count good string
ユーザー roarisroaris
提出日時 2021-10-17 19:59:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 211,716 KB
最終ジャッジ日時 2024-09-17 19:44:50
合計ジャッジ時間 10,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
53,660 KB
testcase_02 WA -
testcase_03 AC 43 ms
62,884 KB
testcase_04 AC 42 ms
61,656 KB
testcase_05 AC 42 ms
62,720 KB
testcase_06 AC 41 ms
61,608 KB
testcase_07 AC 42 ms
62,868 KB
testcase_08 AC 38 ms
62,360 KB
testcase_09 AC 42 ms
61,768 KB
testcase_10 AC 42 ms
62,336 KB
testcase_11 WA -
testcase_12 AC 44 ms
62,200 KB
testcase_13 AC 358 ms
208,424 KB
testcase_14 AC 355 ms
208,412 KB
testcase_15 AC 364 ms
208,936 KB
testcase_16 AC 405 ms
209,292 KB
testcase_17 AC 354 ms
208,676 KB
testcase_18 AC 355 ms
208,676 KB
testcase_19 WA -
testcase_20 AC 352 ms
208,668 KB
testcase_21 WA -
testcase_22 AC 367 ms
209,184 KB
testcase_23 AC 48 ms
72,596 KB
testcase_24 AC 51 ms
72,356 KB
testcase_25 AC 48 ms
72,684 KB
testcase_26 AC 48 ms
72,596 KB
testcase_27 AC 52 ms
73,460 KB
testcase_28 AC 49 ms
73,988 KB
testcase_29 AC 49 ms
72,284 KB
testcase_30 AC 46 ms
73,040 KB
testcase_31 AC 46 ms
72,708 KB
testcase_32 WA -
testcase_33 AC 364 ms
208,296 KB
testcase_34 AC 351 ms
208,780 KB
testcase_35 AC 361 ms
208,416 KB
testcase_36 AC 351 ms
208,416 KB
testcase_37 AC 352 ms
208,416 KB
testcase_38 AC 358 ms
208,416 KB
testcase_39 AC 349 ms
208,668 KB
testcase_40 AC 350 ms
208,416 KB
testcase_41 AC 356 ms
208,544 KB
testcase_42 AC 361 ms
208,804 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 32 ms
53,136 KB
testcase_46 AC 31 ms
52,696 KB
testcase_47 AC 31 ms
52,556 KB
testcase_48 AC 29 ms
52,532 KB
testcase_49 AC 32 ms
53,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def f(T):
    dp = [[0]*N for _ in range(len(T)+1)]
    dp[0][0] = 1
    
    for i in range(len(T)):
        acc = [0]
        
        for j in range(N):
            acc.append((acc[-1]+dp[i][j])%MOD)
        
        for j in range(N):
            if S[j]==T[i]:
                dp[i+1][j] = acc[j]
    
    return sum(dp[-1])%MOD
    
N = int(input())
S = input()[:-1]
MOD = 10**9+7
T = 'yukicoder'
ans = f(T)

for i in range(len(T)):
    ans += f(T[:i]+'?'+T[i+1:])
    ans %= MOD

print(ans)
0