結果

問題 No.82 市松模様
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 09:52:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 217 ms / 5,000 ms
コード長 648 bytes
コンパイル時間 5,553 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-12-21 08:27:33
合計ジャッジ時間 7,816 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
41,216 KB
testcase_01 AC 156 ms
41,048 KB
testcase_02 AC 153 ms
41,240 KB
testcase_03 AC 154 ms
41,200 KB
testcase_04 AC 164 ms
41,160 KB
testcase_05 AC 156 ms
41,196 KB
testcase_06 AC 172 ms
41,280 KB
testcase_07 AC 179 ms
41,620 KB
testcase_08 AC 217 ms
41,672 KB
testcase_09 AC 217 ms
41,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No82 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int W = sc.nextInt();
		int H = sc.nextInt();
		String color = sc.next();
		String itimatu[][] = new String[H][W];
		
		for(int i = 0;i < H;i++) {
			for(int j = 0;j < W;j++) {
				itimatu[i][j] = color;
				if(color.equals("B")) {
					color = "W";
				}else {
					color = "B";
				}
			}
			if(itimatu[i][0].equals("B")) {
				color = "W";
			}else {
				color = "B";
			}
		}
		
		for(int i = 0;i < H;i++) {
			for(int j = 0;j < W;j++) {
				System.out.print(itimatu[i][j]);
			}
			System.out.println();
		}
	}
}
0