結果
| 問題 |
No.700 LOVE
|
| コンテスト | |
| ユーザー |
Athena2911
|
| 提出日時 | 2018-08-16 10:44:35 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 401 bytes |
| コンパイル時間 | 423 ms |
| コンパイル使用メモリ | 57,104 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-22 23:29:27 |
| 合計ジャッジ時間 | 1,121 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main(){
int a,b,ans=0;
char aa[500][500];
cin>>a>>b;
for(int i=0;i<a;i++){
for(int j=0;j<b;j++){
cin>>aa[i][j];
}
}
for(int i=0;i<a;i++){
for(int j=0;j<b;j++){
if(aa[i][j]=='L'&& aa[i][j+1]=='O' &&aa[i][j+2]=='V' && aa[i][j+3]=='E'){
ans++;
}
}
}
if(ans>0){
cout<<"YES"<<endl;
}else{
cout<<"NO"<<endl;
}
}
Athena2911