結果
問題 |
No.700 LOVE
|
ユーザー |
|
提出日時 | 2020-04-19 17:40:54 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 599 bytes |
コンパイル時間 | 1,494 ms |
コンパイル使用メモリ | 167,980 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 23:46:30 |
合計ジャッジ時間 | 2,188 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < n; ++i) using ll = long long; using namespace std; const int INF = 1e9; int main() { int h, w; cin >> h >> w; string s, t = "LOVE"; bool flag = false; rep(i, h) { int cnt = 0; cin >> s; rep(j, s.size()) { if (s[j] == t[cnt]) ++cnt; else cnt = 0; if (cnt == 4) break; } if (cnt == 4) flag = true; } flag ? cout << "YES" : cout << "NO"; cout << endl; return 0; }