結果

問題 No.700 LOVE
ユーザー HTmojiHTmoji
提出日時 2018-06-19 09:39:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 3,566 ms
コンパイル使用メモリ 74,596 KB
実行使用メモリ 54,360 KB
最終ジャッジ日時 2024-07-22 23:22:57
合計ジャッジ時間 7,045 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,952 KB
testcase_01 AC 136 ms
54,360 KB
testcase_02 AC 137 ms
54,132 KB
testcase_03 AC 145 ms
54,300 KB
testcase_04 AC 137 ms
54,232 KB
testcase_05 AC 133 ms
53,992 KB
testcase_06 AC 137 ms
54,192 KB
testcase_07 AC 137 ms
53,876 KB
testcase_08 AC 137 ms
54,124 KB
testcase_09 AC 136 ms
53,756 KB
testcase_10 AC 147 ms
54,296 KB
testcase_11 AC 136 ms
54,144 KB
testcase_12 AC 146 ms
53,976 KB
testcase_13 AC 144 ms
53,896 KB
testcase_14 AC 143 ms
54,096 KB
testcase_15 AC 144 ms
54,108 KB
testcase_16 AC 143 ms
54,092 KB
testcase_17 AC 147 ms
54,104 KB
testcase_18 AC 139 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Sample {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int row = sc.nextInt();
		int col = sc.nextInt();

		for(int i=0;i<row;i++) {
			String value = sc.next();

			if(value.contains("LOVE")) {
				System.out.println("YES");
				return;
			}
		}

		System.out.println("NO");
	}
}
0