結果

問題 No.82 市松模様
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-20 18:29:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-11-21 10:49:52
合計ジャッジ時間 4,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,136 KB
testcase_01 AC 134 ms
41,108 KB
testcase_02 AC 128 ms
41,392 KB
testcase_03 AC 128 ms
41,280 KB
testcase_04 AC 134 ms
41,344 KB
testcase_05 AC 133 ms
41,616 KB
testcase_06 AC 139 ms
41,064 KB
testcase_07 AC 154 ms
41,472 KB
testcase_08 AC 183 ms
41,712 KB
testcase_09 AC 193 ms
41,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int w = sc.nextInt();
		int h = sc.nextInt();
		char c =sc.next().charAt(0);
		int k = c == 'B' ? 0 : 1;
		for(int i = 0 ; i < h ; i++) {
			for(int j = 0 ; j < w ; j++) {
				System.out.print((i + j + k) % 2 == 0 ? "B" : "W");
			}
			System.out.println();
		}
 	}
}

0