結果
問題 | No.1367 文字列門松 |
ユーザー |
![]() |
提出日時 | 2021-01-29 21:38:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 822 bytes |
コンパイル時間 | 1,481 ms |
コンパイル使用メモリ | 166,568 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 07:50:26 |
合計ジャッジ時間 | 2,319 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, a, n) for (int i = a; i < n; i++) //iをaからn #define per(i, n, a) for (int i = a - 1; i >= n; i--) //iをnからa #define db(x) cout << #x << " = " << x << endl #define db2(x, y) cout << "(" << #x << ", " << #y << ") = (" << x << ", " << y << ")\n"; //デバッグ用 #define all(x) (x).begin(), (x).end() //sort(all(a)); ソート //sort(all(a),greater<int>()); 逆順ソート int main() { string s; cin>>s; string kado="kadomatsu"; int snum=0,knum=0; while(true){ if(s.at(snum)==kado.at(knum)){ snum++; knum++; }else{ knum++; } if(snum==s.size()){ cout<<"Yes"; return 0; }else if(knum==kado.size()){ cout<<"No"; return 0; } } return 0; }