結果

問題 No.700 LOVE
ユーザー okkuukenken
提出日時 2018-10-03 16:56:23
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 65,160 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-22 23:32:05
合計ジャッジ時間 1,185 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
	int n, m;
	cin >> n >> m;
	vector<string> s(n);
	for (auto &x : s) cin >> x;
	cout << (any_of(s.begin(), s.end(), [](string x) {return x.find("LOVE") != -1; }) ? "YES" : "NO") << endl;
}
0