結果

問題 No.1702 count good string
ユーザー roarisroaris
提出日時 2021-10-17 20:04:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 200,184 KB
最終ジャッジ日時 2024-09-17 19:45:21
合計ジャッジ時間 10,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,168 KB
testcase_01 AC 35 ms
52,472 KB
testcase_02 AC 39 ms
60,016 KB
testcase_03 AC 50 ms
63,232 KB
testcase_04 AC 42 ms
62,368 KB
testcase_05 AC 42 ms
62,304 KB
testcase_06 AC 44 ms
62,460 KB
testcase_07 AC 43 ms
62,432 KB
testcase_08 AC 43 ms
62,800 KB
testcase_09 AC 42 ms
61,880 KB
testcase_10 AC 42 ms
62,928 KB
testcase_11 AC 45 ms
63,060 KB
testcase_12 AC 42 ms
61,912 KB
testcase_13 AC 365 ms
199,480 KB
testcase_14 AC 356 ms
199,220 KB
testcase_15 AC 356 ms
199,296 KB
testcase_16 AC 369 ms
199,044 KB
testcase_17 AC 359 ms
199,084 KB
testcase_18 AC 360 ms
199,084 KB
testcase_19 AC 427 ms
200,184 KB
testcase_20 AC 371 ms
199,212 KB
testcase_21 AC 367 ms
199,332 KB
testcase_22 AC 427 ms
200,060 KB
testcase_23 AC 58 ms
72,908 KB
testcase_24 AC 57 ms
72,924 KB
testcase_25 AC 58 ms
73,468 KB
testcase_26 AC 58 ms
73,392 KB
testcase_27 AC 61 ms
75,408 KB
testcase_28 AC 53 ms
72,704 KB
testcase_29 AC 53 ms
72,784 KB
testcase_30 AC 58 ms
73,060 KB
testcase_31 AC 53 ms
73,024 KB
testcase_32 AC 55 ms
73,620 KB
testcase_33 AC 356 ms
199,220 KB
testcase_34 AC 356 ms
199,096 KB
testcase_35 AC 355 ms
199,164 KB
testcase_36 AC 353 ms
199,296 KB
testcase_37 AC 359 ms
199,288 KB
testcase_38 AC 362 ms
199,352 KB
testcase_39 AC 362 ms
199,348 KB
testcase_40 AC 358 ms
199,224 KB
testcase_41 AC 377 ms
199,136 KB
testcase_42 AC 375 ms
199,092 KB
testcase_43 AC 353 ms
196,720 KB
testcase_44 AC 354 ms
199,600 KB
testcase_45 AC 37 ms
52,732 KB
testcase_46 AC 37 ms
52,616 KB
testcase_47 AC 39 ms
52,956 KB
testcase_48 AC 36 ms
52,944 KB
testcase_49 AC 35 ms
52,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def f(T):
    dp = [[0]*N for _ in range(len(T))]
    
    for i in range(N):
        if S[i]==T[0]:
            dp[0][i] = 1
    
    for i in range(1, len(T)):
        acc = [0]
        
        for j in range(N):
            acc.append((acc[-1]+dp[i-1][j])%MOD)
        
        for j in range(N):
            if S[j]==T[i]:
                dp[i][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