結果
| 問題 |
No.700 LOVE
|
| コンテスト | |
| ユーザー |
walker3s0808
|
| 提出日時 | 2018-06-24 16:37:09 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 299 bytes |
| コンパイル時間 | 463 ms |
| コンパイル使用メモリ | 57,544 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-30 22:31:44 |
| 合計ジャッジ時間 | 1,176 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 8 WA * 8 |
ソースコード
#include<iostream>
using namespace std;
int main(){
string str[100];
int N, M;
cin >> N >> M;
for(int i =0;i < N; i++){
if(str[i].find("LOVE") != string::npos){
cout << "YES" << endl;
return 0;
}
}
cout <<"NO"<< endl;
return 0;
}
walker3s0808