結果
| 問題 | No.700 LOVE | 
| コンテスト | |
| ユーザー |  ngtkana | 
| 提出日時 | 2020-02-23 22:48:59 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 3 ms / 2,000 ms | 
| コード長 | 415 bytes | 
| コンパイル時間 | 1,552 ms | 
| コンパイル使用メモリ | 166,920 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-07-22 23:45:00 | 
| 合計ジャッジ時間 | 2,315 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 16 | 
ソースコード
#include <bits/stdc++.h>
using longlong=long long;
int main(){
    std::cin.tie(nullptr);std::cin.sync_with_stdio(false);
    int h,w;std::cin>>h>>w;
    for(int i=0;i<h;i++){
        std::string s;std::cin>>s;
        for(int j=0;j<w;j++){
            if(s.substr(j,4)=="LOVE"){
                std::cout<<"YES"<<std::endl;
                return 0;
            }
        }
    }
    std::cout<<"NO"<<std::endl;
}
            
            
            
        