結果
問題 | No.700 LOVE |
ユーザー |
![]() |
提出日時 | 2018-06-15 23:10:24 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 141 bytes |
コンパイル時間 | 115 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-30 15:22:12 |
合計ジャッジ時間 | 1,318 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 WA * 3 |
ソースコード
n,m=map(int,input().split())b=str("")for i in range(n):b=b+str(input())if ('LOVE' in b)==True:print('YES')else:print('NO')