結果

問題 No.82 市松模様
ユーザー jimanojimano
提出日時 2018-01-14 15:22:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 998 bytes
コンパイル時間 3,125 ms
コンパイル使用メモリ 77,884 KB
実行使用メモリ 51,456 KB
最終ジャッジ日時 2024-12-24 02:46:29
合計ジャッジ時間 4,391 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
49,824 KB
testcase_01 AC 50 ms
50,060 KB
testcase_02 AC 49 ms
50,284 KB
testcase_03 AC 50 ms
50,228 KB
testcase_04 AC 52 ms
50,240 KB
testcase_05 AC 52 ms
50,100 KB
testcase_06 AC 52 ms
50,412 KB
testcase_07 AC 57 ms
50,220 KB
testcase_08 AC 109 ms
51,260 KB
testcase_09 AC 110 ms
51,456 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