結果
問題 |
No.700 LOVE
|
ユーザー |
![]() |
提出日時 | 2018-10-12 16:17:22 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 169 bytes |
コンパイル時間 | 218 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-12 17:47:36 |
合計ジャッジ時間 | 1,484 ms |
ジャッジサーバーID (参考情報) |
judge / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 16 |
ソースコード
n1,n2 = map(int, input().split()) l = [input() for _ in range(n1)] print(l) for i in l: if 'LOVE' in i: print('YES') break else: print('NO')