結果
問題 | No.700 LOVE |
ユーザー |
|
提出日時 | 2018-06-17 13:40:18 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 150 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 23:19:58 |
合計ジャッジ時間 | 1,168 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 |
ソースコード
#yuki700 import sys n,m=map(int,raw_input().split()) for i in xrange(n): s=raw_input() if s.count('LOVE')>0: print 'YES' sys.exit() print 'NO'