結果
問題 | No.700 LOVE |
ユーザー | suakii |
提出日時 | 2018-06-15 22:23:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 601 bytes |
コンパイル時間 | 1,158 ms |
コンパイル使用メモリ | 158,436 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 14:59:36 |
合計ジャッジ時間 | 1,809 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
6,940 KB |
testcase_18 | AC | 1 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; #define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; i++) #define rep(i, n) FOR(i, 0, n) string s[100]; int main() { cin.tie(0); ios::sync_with_stdio(false); int n, m; cin >> n >> m; for (int i = 0; i < n; i++) { cin >> s[i]; for (int j = 0; j < m; j++) { if (j + 3 < m && s[i][j] == 'L' && s[i][j+1] == 'O' && s[i][j+2] == 'V' && s[i][j+3] == 'E') { cout << "YES\n"; return 0; } } } cout << "No\n"; return 0; }