結果

問題 No.700 LOVE
ユーザー cielciel
提出日時 2018-06-15 22:25:13
言語 Java
(openjdk 23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 345 bytes
コンパイル時間 2,940 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-11-25 06:57:54
合計ジャッジ時間 5,943 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		for (int i=0; i<n; i++) {
			String s = sc.next();
			if (s.indexOf("LOVE") > 0) {
				System.out.println("YES");
				return;
			}
		}
		System.out.println("NO");
	}
}
0