結果

問題 No.700 LOVE
ユーザー convexineqconvexineq
提出日時 2021-03-17 20:25:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 123 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 53,816 KB
最終ジャッジ日時 2024-04-27 12:51:50
合計ジャッジ時間 1,540 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,000 KB
testcase_01 AC 32 ms
52,376 KB
testcase_02 AC 34 ms
51,812 KB
testcase_03 AC 34 ms
52,312 KB
testcase_04 AC 34 ms
53,404 KB
testcase_05 AC 32 ms
52,536 KB
testcase_06 AC 33 ms
52,228 KB
testcase_07 AC 32 ms
53,036 KB
testcase_08 AC 32 ms
53,384 KB
testcase_09 AC 31 ms
53,816 KB
testcase_10 AC 31 ms
52,484 KB
testcase_11 AC 30 ms
52,336 KB
testcase_12 AC 32 ms
52,288 KB
testcase_13 AC 32 ms
52,608 KB
testcase_14 AC 33 ms
52,888 KB
testcase_15 AC 31 ms
53,724 KB
testcase_16 AC 31 ms
52,672 KB
testcase_17 AC 33 ms
52,072 KB
testcase_18 AC 31 ms
53,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
for _ in range(n):
    if "LOVE" in input():
        print("YES")
        exit()
print("NO")
0