結果
| 問題 |
No.700 LOVE
|
| コンテスト | |
| ユーザー |
Athena2911
|
| 提出日時 | 2018-08-16 10:42:39 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 399 bytes |
| コンパイル時間 | 784 ms |
| コンパイル使用メモリ | 57,448 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-01 12:29:21 |
| 合計ジャッジ時間 | 1,528 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 16 |
ソースコード
#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int main(){
int a,b,ans=0;
char aa[50][50];
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