結果

問題 No.700 LOVE
ユーザー k0825k0825
提出日時 2019-04-30 13:17:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 98 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 10,712 KB
実行使用メモリ 7,932 KB
最終ジャッジ日時 2023-08-28 15:39:25
合計ジャッジ時間 1,433 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,840 KB
testcase_01 AC 15 ms
7,896 KB
testcase_02 AC 15 ms
7,804 KB
testcase_03 AC 15 ms
7,728 KB
testcase_04 AC 15 ms
7,760 KB
testcase_05 AC 14 ms
7,756 KB
testcase_06 AC 15 ms
7,716 KB
testcase_07 AC 14 ms
7,800 KB
testcase_08 AC 14 ms
7,904 KB
testcase_09 AC 15 ms
7,788 KB
testcase_10 AC 14 ms
7,896 KB
testcase_11 AC 14 ms
7,756 KB
testcase_12 AC 14 ms
7,756 KB
testcase_13 AC 15 ms
7,732 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 14 ms
7,756 KB
testcase_18 AC 14 ms
7,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split());s=''
for _ in '1'*n: s+=input()
print('YES' if 'LOVE' in s else 'NO')
0