結果

問題 No.1702 count good string
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-10-08 22:38:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 454 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 176,996 KB
最終ジャッジ日時 2024-07-23 05:40:28
合計ジャッジ時間 11,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,504 KB
testcase_01 AC 37 ms
52,576 KB
testcase_02 AC 41 ms
58,580 KB
testcase_03 AC 42 ms
59,772 KB
testcase_04 AC 46 ms
61,928 KB
testcase_05 AC 43 ms
59,584 KB
testcase_06 AC 43 ms
59,476 KB
testcase_07 AC 42 ms
59,156 KB
testcase_08 AC 43 ms
59,772 KB
testcase_09 AC 46 ms
61,740 KB
testcase_10 AC 45 ms
60,308 KB
testcase_11 AC 46 ms
62,144 KB
testcase_12 AC 43 ms
60,796 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 49 ms
61,748 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 46 ms
61,356 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 WA -
testcase_44 WA -
testcase_45 AC 37 ms
54,064 KB
testcase_46 AC 37 ms
53,320 KB
testcase_47 AC 37 ms
52,980 KB
testcase_48 AC 37 ms
53,816 KB
testcase_49 AC 36 ms
53,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = list(" yukicoder")
aa = list(" yukicoder")
n = int(input())
s = list(input())
ans = 0
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]
            if s[k-1] == a[j]:
                dp[j][k] += dp[j-1][k-1]
    ans += dp[-1][-1]
    if i == 9:break
    a[i+1] = "?"
    a[i] = aa[i]
#     print(dp[-1])
print(ans)
0