結果

問題 No.1367 文字列門松
ユーザー marroncastlemarroncastle
提出日時 2021-01-29 21:34:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 53,776 KB
最終ジャッジ日時 2024-06-27 07:43:32
合計ジャッジ時間 1,966 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,160 KB
testcase_01 AC 37 ms
52,296 KB
testcase_02 WA -
testcase_03 AC 35 ms
52,272 KB
testcase_04 WA -
testcase_05 AC 37 ms
53,164 KB
testcase_06 AC 36 ms
52,820 KB
testcase_07 AC 35 ms
52,104 KB
testcase_08 AC 35 ms
52,400 KB
testcase_09 AC 36 ms
52,284 KB
testcase_10 AC 36 ms
52,328 KB
testcase_11 AC 39 ms
52,064 KB
testcase_12 AC 37 ms
52,888 KB
testcase_13 AC 35 ms
52,248 KB
testcase_14 AC 35 ms
52,268 KB
testcase_15 AC 35 ms
52,648 KB
testcase_16 AC 34 ms
53,084 KB
testcase_17 WA -
testcase_18 AC 35 ms
52,672 KB
testcase_19 AC 35 ms
52,812 KB
testcase_20 AC 35 ms
52,872 KB
testcase_21 AC 36 ms
52,236 KB
testcase_22 AC 35 ms
52,096 KB
testcase_23 AC 36 ms
53,776 KB
testcase_24 AC 36 ms
52,504 KB
testcase_25 AC 36 ms
53,684 KB
testcase_26 AC 36 ms
53,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  S = input()
  T = 'kadomatsu'
  j = 0
  for s in S:
    while s!=T[j]:
      j += 1
      if j==9: return 'No'
  return 'Yes'
print(solve())
0