結果

問題 No.82 市松模様
ユーザー TatsuDXTatsuDX
提出日時 2016-09-08 23:44:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 185 ms / 5,000 ms
コード長 482 bytes
コンパイル時間 3,184 ms
コンパイル使用メモリ 75,448 KB
実行使用メモリ 41,988 KB
最終ジャッジ日時 2024-11-15 22:29:10
合計ジャッジ時間 5,213 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,200 KB
testcase_01 AC 130 ms
40,904 KB
testcase_02 AC 126 ms
41,216 KB
testcase_03 AC 123 ms
41,164 KB
testcase_04 AC 131 ms
41,164 KB
testcase_05 AC 132 ms
40,988 KB
testcase_06 AC 137 ms
41,428 KB
testcase_07 AC 145 ms
41,384 KB
testcase_08 AC 179 ms
41,988 KB
testcase_09 AC 185 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int w = sc.nextInt(), h = sc.nextInt();
		String s = sc.next(), a, b;
		if(s.charAt(0) == 'B'){
			a = "B";
			b = "W";
		} else {
			a = "W";
			b = "B";
		}
		for(int i = 0; i < h; i++){
			for(int j = 0; j < w; j++){
				if((i+j)%2 == 0){
					System.out.print(a);
				} else {
					System.out.print(b);
				}
			}
			System.out.println();
		}
	}
}
0