結果
問題 | No.700 LOVE |
ユーザー |
|
提出日時 | 2019-07-13 21:21:19 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 146 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-22 14:40:18 |
合計ジャッジ時間 | 1,565 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 16 |
ソースコード
r ,c = map(int,(input().split())) list_1 ='' for _ in range(r): list_1 += input() print(list_1) print("YES" if list_1.count("LOVE") >0 else "NO")