結果

問題 No.700 LOVE
ユーザー YamaKasaYamaKasa
提出日時 2018-07-15 22:19:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 2,314 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 42,112 KB
最終ジャッジ日時 2024-07-22 23:25:40
合計ジャッジ時間 5,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,568 KB
testcase_01 AC 141 ms
41,780 KB
testcase_02 AC 134 ms
41,696 KB
testcase_03 AC 137 ms
41,596 KB
testcase_04 AC 141 ms
42,112 KB
testcase_05 AC 142 ms
41,444 KB
testcase_06 AC 135 ms
41,100 KB
testcase_07 AC 140 ms
41,216 KB
testcase_08 AC 142 ms
41,600 KB
testcase_09 AC 136 ms
41,472 KB
testcase_10 AC 147 ms
41,648 KB
testcase_11 AC 154 ms
41,968 KB
testcase_12 AC 141 ms
41,872 KB
testcase_13 AC 144 ms
42,100 KB
testcase_14 AC 148 ms
41,776 KB
testcase_15 AC 152 ms
41,776 KB
testcase_16 AC 148 ms
41,744 KB
testcase_17 AC 154 ms
41,716 KB
testcase_18 AC 146 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int m = scan.nextInt();
		String []s = new String[n];
		for(int i = 0; i < n; i++) {
			s[i] = scan.next();
			if(s[i].length() != m) {
				break;
			}
		}
		scan.close();
		for(int i = 0; i < n; i++) {
			if(s[i].matches(".*LOVE.*")) {
				System.out.println("YES");
				System.exit(0);
			}
		}
		System.out.println("NO");
	}
}
0