結果
問題 | No.1367 文字列門松 |
ユーザー | kohei2019 |
提出日時 | 2021-02-17 16:56:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 195 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-09-14 03:35:10 |
合計ジャッジ時間 | 2,228 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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')