結果

問題 No.700 LOVE
ユーザー CecilCecil
提出日時 2023-01-12 20:30:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 74,748 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-06-06 02:42:08
合計ジャッジ時間 5,442 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,968 KB
testcase_01 AC 120 ms
53,912 KB
testcase_02 AC 120 ms
53,856 KB
testcase_03 AC 123 ms
54,064 KB
testcase_04 AC 128 ms
54,112 KB
testcase_05 AC 126 ms
53,940 KB
testcase_06 AC 125 ms
54,056 KB
testcase_07 AC 125 ms
53,916 KB
testcase_08 AC 133 ms
54,068 KB
testcase_09 AC 140 ms
54,132 KB
testcase_10 AC 149 ms
54,144 KB
testcase_11 AC 169 ms
54,216 KB
testcase_12 AC 169 ms
54,080 KB
testcase_13 AC 154 ms
54,296 KB
testcase_14 AC 166 ms
54,264 KB
testcase_15 AC 167 ms
54,188 KB
testcase_16 AC 171 ms
54,252 KB
testcase_17 AC 165 ms
54,048 KB
testcase_18 AC 161 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static String word = "LOVE";

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

		int n = scan.hasNextInt() ? scan.nextInt() : -1;
		int m = scan.hasNextInt() ? scan.nextInt() : -1;
		if (n > 50 || n < 2 || m > 50 || m < 2) {
			System.out.println("入力エラー1");
			return;
		}

		String[][] str = new String[n][m];
		String ans = "NO";

		for (int i = 0; i < n; i++) {
			for (int j = 0; j < m; j++) {
				str[i][j] = scan.hasNextLine() ? scan.nextLine() : null;

				if (str[i][j] != null && str[i][j].contains(word)) {
					ans = "YES";
					break;
				}
			}
		}

		// 結果出力
		System.out.println(ans);

	}
}
0