結果

問題 No.1367 文字列門松
ユーザー tobusakanatobusakana
提出日時 2022-11-26 14:19:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 53,844 KB
最終ジャッジ日時 2024-10-02 17:10:44
合計ジャッジ時間 2,099 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,280 KB
testcase_01 AC 33 ms
52,152 KB
testcase_02 AC 34 ms
51,872 KB
testcase_03 AC 34 ms
52,404 KB
testcase_04 AC 34 ms
53,844 KB
testcase_05 AC 34 ms
51,876 KB
testcase_06 AC 33 ms
53,320 KB
testcase_07 AC 34 ms
53,148 KB
testcase_08 AC 35 ms
53,244 KB
testcase_09 AC 35 ms
52,072 KB
testcase_10 AC 39 ms
52,076 KB
testcase_11 AC 34 ms
52,100 KB
testcase_12 AC 35 ms
52,940 KB
testcase_13 AC 34 ms
52,496 KB
testcase_14 AC 34 ms
52,804 KB
testcase_15 AC 34 ms
52,072 KB
testcase_16 AC 33 ms
52,664 KB
testcase_17 AC 35 ms
53,836 KB
testcase_18 AC 35 ms
52,644 KB
testcase_19 AC 36 ms
52,320 KB
testcase_20 AC 34 ms
52,432 KB
testcase_21 AC 35 ms
52,460 KB
testcase_22 AC 34 ms
53,100 KB
testcase_23 AC 36 ms
52,624 KB
testcase_24 AC 34 ms
53,748 KB
testcase_25 AC 34 ms
52,360 KB
testcase_26 AC 33 ms
51,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
T = "kadomatsu"
N = len(S)
M = len(T)
dp = [[0] * (M + 1) for i in range(N + 1)]

for i in range(N):
    for j in range(M):
        if S[i] == T[j]:
            dp[i + 1][j + 1] = max(dp[i][j] + 1, dp[i + 1][j + 1])
        else:
            dp[i + 1][j + 1] = max(dp[i][j + 1], dp[i + 1][j])
            
if dp[-1][-1] == N:
    print("Yes")
else:
    print("No")
0