結果
| 問題 | No.700 LOVE |
| コンテスト | |
| ユーザー |
___
|
| 提出日時 | 2018-06-27 23:09:48 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 2,000 ms |
| コード長 | 171 bytes |
| 記録 | |
| コンパイル時間 | 333 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-03 11:34:14 |
| 合計ジャッジ時間 | 2,796 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
# coding: utf-8
row, column = map(int, input().split())
for _ in range(row):
if 'LOVE' in input():
print('YES')
exit()
# There is no LOVE
print('NO')
___