結果

問題 No.1941 CHECKER×CHECKER(1)
ユーザー ks2mks2m
提出日時 2022-05-20 23:43:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-09-20 10:11:07
合計ジャッジ時間 4,859 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,168 KB
testcase_01 AC 116 ms
41,300 KB
testcase_02 AC 102 ms
40,328 KB
testcase_03 AC 119 ms
41,048 KB
testcase_04 AC 108 ms
40,200 KB
testcase_05 AC 116 ms
41,024 KB
testcase_06 AC 117 ms
41,064 KB
testcase_07 AC 118 ms
41,004 KB
testcase_08 AC 105 ms
40,628 KB
testcase_09 AC 101 ms
40,140 KB
testcase_10 AC 114 ms
41,500 KB
testcase_11 AC 118 ms
41,300 KB
testcase_12 AC 114 ms
40,920 KB
testcase_13 AC 115 ms
40,900 KB
testcase_14 AC 104 ms
40,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < 3; i++) {
			sb.append(sc.next());
		}
		sc.close();

		String s = sb.toString();
		if (s.equals("#.#.#.#.#") || s.equals(".#.#.#.#.")) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0