結果

問題 No.82 市松模様
ユーザー jimanojimano
提出日時 2018-01-14 15:22:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 998 bytes
コンパイル時間 2,722 ms
コンパイル使用メモリ 77,192 KB
実行使用メモリ 52,128 KB
最終ジャッジ日時 2024-06-06 11:35:38
合計ジャッジ時間 3,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,112 KB
testcase_01 AC 48 ms
50,112 KB
testcase_02 AC 50 ms
52,128 KB
testcase_03 AC 50 ms
50,044 KB
testcase_04 AC 49 ms
50,104 KB
testcase_05 AC 50 ms
50,112 KB
testcase_06 AC 49 ms
50,088 KB
testcase_07 AC 54 ms
49,676 KB
testcase_08 AC 107 ms
51,512 KB
testcase_09 AC 106 ms
51,472 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[] ichimatsu = new char[2];
			ichimatsu[0] = str[2].charAt(0);
			if (ichimatsu[0] == 'W')
				ichimatsu[1] = 'B';
			else
				ichimatsu[1] = 'W';

			for (int i = 0; i < H; i++) {
				for (int j = 0; j < W; j++) {
					if (i % 2 == 0) {
						if (j % 2 == 0)
							System.out.print(ichimatsu[0]);
						else
							System.out.print(ichimatsu[1]);
					} else {
						if (j % 2 == 0)
							System.out.print(ichimatsu[1]);
						else
							System.out.print(ichimatsu[0]);
					}
				}
				System.out.println();
			}

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