結果

問題 No.1367 文字列門松
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-07-06 15:03:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 57,340 KB
最終ジャッジ日時 2024-07-06 15:03:38
合計ジャッジ時間 2,318 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import pypyjit
pypyjit.set_param("max_unroll_recursion=-1")
from collections import *
from functools import *
from itertools import *
from heapq import *
import sys, math
# sys.setrecursionlimit(10**4)
input = sys.stdin.readline



S = list(input())[:-1]
X = list('kadomatsu')
M = len(S)
N = len(X)
now = 0
for x in X:
    if x==S[now]:
        now += 1
    if now==M:
        print('Yes')
        exit()
print('No')
# print(now)
0