結果

問題 No.82 市松模様
ユーザー YamaKasaYamaKasa
提出日時 2018-04-23 23:52:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 5,000 ms
コード長 851 bytes
コンパイル時間 2,687 ms
コンパイル使用メモリ 77,224 KB
実行使用メモリ 41,956 KB
最終ジャッジ日時 2024-06-27 14:10:19
合計ジャッジ時間 4,149 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,296 KB
testcase_01 AC 136 ms
41,576 KB
testcase_02 AC 113 ms
40,168 KB
testcase_03 AC 123 ms
41,288 KB
testcase_04 AC 126 ms
40,968 KB
testcase_05 AC 115 ms
39,936 KB
testcase_06 AC 134 ms
41,360 KB
testcase_07 AC 155 ms
41,468 KB
testcase_08 AC 189 ms
41,528 KB
testcase_09 AC 185 ms
41,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int W = scan.nextInt();
		int H = scan.nextInt();
		String C = scan.next();
		scan.close();
		String temp = C;
		if(W % 2 == 0) {
			for(int i = 0; i < H; i++) {
				for(int j = 0; j < W; j++) {
					if(temp.equals("W")) {
						System.out.print(temp);
						temp = "B";
					}else {
						System.out.print(temp);
						temp = "W";
					}
				}
				System.out.println();
				if(temp.equals("W")) {
					temp = "B";
				}else {
					temp = "W";
				}
			}
		}else {
			for(int i = 0; i < H; i++) {
				for(int j = 0; j < W; j++) {
					if(temp.equals("W")) {
						System.out.print(temp);
						temp = "B";
					}else {
						System.out.print(temp);
						temp = "W";
					}
				}
				System.out.println();
			}
		}
	}
}
0