結果
問題 | No.1367 文字列門松 |
ユーザー |
|
提出日時 | 2021-09-12 22:32:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 165 bytes |
コンパイル時間 | 487 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-24 18:36:30 |
合計ジャッジ時間 | 2,302 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
s=list(input()) n=len(s) k=list("kadomatsu") for i in range(n): if s[i] in k: ind=k.index(s[i]) k=k[ind+1:] else: print("No") exit() print('Yes')