結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
56,304 KB
testcase_01 AC 41 ms
56,232 KB
testcase_02 AC 43 ms
56,120 KB
testcase_03 AC 46 ms
56,104 KB
testcase_04 AC 42 ms
57,140 KB
testcase_05 AC 42 ms
56,188 KB
testcase_06 AC 44 ms
56,496 KB
testcase_07 AC 44 ms
55,624 KB
testcase_08 AC 44 ms
56,192 KB
testcase_09 AC 49 ms
56,376 KB
testcase_10 AC 47 ms
56,780 KB
testcase_11 AC 42 ms
55,420 KB
testcase_12 AC 48 ms
56,108 KB
testcase_13 AC 43 ms
57,136 KB
testcase_14 AC 44 ms
56,044 KB
testcase_15 AC 44 ms
56,820 KB
testcase_16 AC 46 ms
56,464 KB
testcase_17 AC 46 ms
56,480 KB
testcase_18 AC 43 ms
55,924 KB
testcase_19 AC 42 ms
55,636 KB
testcase_20 AC 49 ms
57,048 KB
testcase_21 AC 43 ms
55,764 KB
testcase_22 AC 43 ms
56,528 KB
testcase_23 AC 47 ms
55,812 KB
testcase_24 AC 43 ms
56,620 KB
testcase_25 AC 42 ms
56,376 KB
testcase_26 AC 42 ms
57,340 KB
権限があれば一括ダウンロードができます

ソースコード

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