結果

問題 No.700 LOVE
ユーザー c-yanc-yan
提出日時 2020-03-27 22:20:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 136 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 10,712 KB
実行使用メモリ 8,228 KB
最終ジャッジ日時 2023-08-30 16:55:58
合計ジャッジ時間 1,151 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
8,228 KB
testcase_01 AC 15 ms
7,864 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 15 ms
8,044 KB
testcase_05 AC 14 ms
8,156 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 15 ms
8,056 KB
testcase_09 RE -
testcase_10 AC 14 ms
7,816 KB
testcase_11 AC 15 ms
8,192 KB
testcase_12 AC 15 ms
8,088 KB
testcase_13 AC 14 ms
8,224 KB
testcase_14 AC 14 ms
7,784 KB
testcase_15 AC 14 ms
7,960 KB
testcase_16 AC 15 ms
7,832 KB
testcase_17 AC 14 ms
8,132 KB
testcase_18 AC 14 ms
8,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())

for _ in range(m):
    if input().find('LOVE') != -1:
        print('YES')
        exit()
print('NO')
0