結果
問題 |
No.700 LOVE
|
ユーザー |
![]() |
提出日時 | 2019-09-25 14:34:59 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 175 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-22 05:40:47 |
合計ジャッジ時間 | 1,359 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 WA * 3 |
ソースコード
# No.700 LOVE n, m = [int(i) for i in input().split()] s = [input() for i in range(n)] picture = '' for i in s: picture += i print('YES' if 'LOVE' in picture else 'NO')