結果

問題 No.1367 文字列門松
ユーザー tobusakanatobusakana
提出日時 2022-11-26 13:09:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 53,608 KB
最終ジャッジ日時 2024-10-02 16:17:39
合計ジャッジ時間 2,214 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,264 KB
testcase_01 AC 39 ms
52,304 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,132 KB
testcase_04 WA -
testcase_05 AC 37 ms
51,748 KB
testcase_06 AC 37 ms
53,248 KB
testcase_07 AC 37 ms
53,240 KB
testcase_08 AC 37 ms
52,268 KB
testcase_09 AC 37 ms
53,608 KB
testcase_10 AC 39 ms
52,092 KB
testcase_11 AC 37 ms
53,152 KB
testcase_12 AC 37 ms
52,428 KB
testcase_13 AC 38 ms
52,492 KB
testcase_14 AC 37 ms
52,340 KB
testcase_15 AC 38 ms
52,560 KB
testcase_16 AC 38 ms
52,476 KB
testcase_17 WA -
testcase_18 AC 36 ms
53,176 KB
testcase_19 AC 37 ms
52,288 KB
testcase_20 AC 36 ms
52,352 KB
testcase_21 AC 38 ms
53,536 KB
testcase_22 AC 38 ms
52,212 KB
testcase_23 AC 38 ms
51,672 KB
testcase_24 AC 38 ms
52,152 KB
testcase_25 AC 38 ms
53,168 KB
testcase_26 AC 38 ms
52,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
# Sがkadomatsuの部分列であればOK

T = "kadomatsu"

Tind = 0
for s in S:
  while Tind < len(T) and s != T[Tind]:
    Tind += 1
  if Tind == len(T):
    print("No")
    break
else:
  print("Yes")
0