結果

問題 No.1367 文字列門松
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-29 22:20:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 87,228 KB
実行使用メモリ 71,512 KB
最終ジャッジ日時 2023-09-09 15:48:46
合計ジャッジ時間 3,664 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,440 KB
testcase_01 AC 68 ms
71,324 KB
testcase_02 AC 72 ms
71,316 KB
testcase_03 AC 71 ms
71,272 KB
testcase_04 AC 70 ms
71,472 KB
testcase_05 AC 68 ms
71,420 KB
testcase_06 AC 69 ms
71,368 KB
testcase_07 AC 69 ms
71,276 KB
testcase_08 AC 69 ms
71,436 KB
testcase_09 AC 70 ms
71,112 KB
testcase_10 AC 71 ms
71,116 KB
testcase_11 AC 69 ms
71,368 KB
testcase_12 AC 70 ms
71,336 KB
testcase_13 AC 70 ms
71,432 KB
testcase_14 AC 70 ms
71,412 KB
testcase_15 AC 69 ms
71,056 KB
testcase_16 AC 70 ms
71,404 KB
testcase_17 AC 69 ms
71,260 KB
testcase_18 AC 69 ms
71,432 KB
testcase_19 AC 70 ms
71,356 KB
testcase_20 AC 69 ms
71,512 KB
testcase_21 AC 70 ms
71,364 KB
testcase_22 AC 70 ms
71,432 KB
testcase_23 AC 70 ms
71,272 KB
testcase_24 AC 69 ms
71,252 KB
testcase_25 AC 70 ms
71,276 KB
testcase_26 AC 70 ms
71,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ans = "kadomatsu111"
now = 0
for i in s:
    while now < len(ans) and i != ans[now]:
        now += 1
    now += 1
if now > 10:
    print("No")
else:
    print("Yes")
0