結果

問題 No.82 市松模様
ユーザー scachescache
提出日時 2014-12-02 23:24:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 79,028 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-06-11 07:41:20
合計ジャッジ時間 5,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
40,880 KB
testcase_01 AC 141 ms
41,096 KB
testcase_02 AC 139 ms
41,080 KB
testcase_03 AC 141 ms
41,372 KB
testcase_04 AC 148 ms
40,964 KB
testcase_05 AC 145 ms
41,120 KB
testcase_06 AC 146 ms
41,268 KB
testcase_07 AC 163 ms
41,088 KB
testcase_08 AC 200 ms
41,484 KB
testcase_09 AC 198 ms
41,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main82 {
	public static void main(String[] args) {
		Main82 p = new Main82();
	}

	public Main82() {
		Scanner sc = new Scanner(System.in);
		int W = sc.nextInt();
		int H = sc.nextInt();
		char[] c = new char[2];
		c[0] = sc.next().charAt(0);
		c[1] = c[0]=='W' ? 'B' : 'W';
		solve(W, H, c);
	}

	public void solve(int w, int h, char[] c) {
		
		for(int i=0;i<h;i++){
			for(int j=0;j<w;j++){
				System.out.print((c[(i+j)%2]));
			}
			System.out.println();
		}
	}

}
0