結果

問題 No.82 市松模様
ユーザー YOSHIYOSHI
提出日時 2021-02-27 21:01:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 599 bytes
コンパイル時間 3,961 ms
コンパイル使用メモリ 73,956 KB
実行使用メモリ 38,988 KB
最終ジャッジ日時 2024-10-02 18:04:15
合計ジャッジ時間 5,215 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,220 KB
testcase_01 AC 51 ms
36,944 KB
testcase_02 AC 49 ms
37,080 KB
testcase_03 AC 50 ms
37,280 KB
testcase_04 AC 52 ms
37,120 KB
testcase_05 AC 51 ms
37,116 KB
testcase_06 AC 54 ms
37,164 KB
testcase_07 AC 60 ms
37,256 KB
testcase_08 AC 116 ms
38,988 KB
testcase_09 AC 119 ms
38,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00000082_Main {

	public static void main(String[] args) throws IOException {

		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		String[] bwArr = new String[]{"B","W"};
		String[] arr = br.readLine().split(" ");
		int subIndex = ("B".equals(arr[2])) ? 0 : 1;
		for(int i = 0; i < Integer.parseInt(arr[1]) ; i++) {
			for(int j = 0; j < Integer.parseInt(arr[0]) ; j++) {
				System.out.print(bwArr[(i + j + subIndex) %2]);
			}
			System.out.println();
		}
	}

}
0