結果

問題 No.82 市松模様
ユーザー jimanojimano
提出日時 2018-01-14 15:28:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 827 bytes
コンパイル時間 3,484 ms
コンパイル使用メモリ 74,388 KB
実行使用メモリ 38,464 KB
最終ジャッジ日時 2024-06-06 11:36:03
合計ジャッジ時間 4,621 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,868 KB
testcase_01 AC 54 ms
36,752 KB
testcase_02 AC 54 ms
36,892 KB
testcase_03 AC 53 ms
36,692 KB
testcase_04 AC 57 ms
36,676 KB
testcase_05 AC 54 ms
36,548 KB
testcase_06 AC 58 ms
36,744 KB
testcase_07 AC 63 ms
37,012 KB
testcase_08 AC 110 ms
38,464 KB
testcase_09 AC 121 ms
38,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class No0082 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] str = br.readLine().split(" ");
			int W = Integer.parseInt(str[0]);
			int H = Integer.parseInt(str[1]);
			char ichimatsu1 = str[2].charAt(0);
			char ichimatsu2 = (ichimatsu1 == 'W') ? 'B' : 'W';

			for (int i = 0; i < H; i++) {
				for (int j = 0; j < W; j++) {
					if (i % 2 == 0 && j % 2 == 0 || i % 2 == 1 && j % 2 == 1) {
						System.out.print(ichimatsu1);
					} else {
						System.out.print(ichimatsu2);
					}
				}
				System.out.println();
			}

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0