結果

問題 No.82 市松模様
ユーザー soujikisoujiki
提出日時 2015-04-29 20:38:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 614 bytes
コンパイル時間 3,017 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 41,776 KB
最終ジャッジ日時 2024-07-05 16:47:20
合計ジャッジ時間 4,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,132 KB
testcase_01 AC 110 ms
41,080 KB
testcase_02 AC 108 ms
40,832 KB
testcase_03 AC 94 ms
41,180 KB
testcase_04 AC 115 ms
41,388 KB
testcase_05 AC 103 ms
39,868 KB
testcase_06 AC 107 ms
41,500 KB
testcase_07 AC 114 ms
41,356 KB
testcase_08 AC 149 ms
41,776 KB
testcase_09 AC 154 ms
41,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_82{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int W = stdIn.nextInt();
		int H = stdIn.nextInt();
		String str = stdIn.next();
		boolean flag;
		if(str.equals("B")){
			flag = true;
		}
		else{
			flag = false;
		}

		for(int i=0;i<H;i++){
			for(int j=0;j<W;j++){
				if(flag){
					System.out.print("B");
					flag = false;
				}
				else{
					System.out.print("W");
					flag = true;
				}
			}
			if(W%2==0){
				if(flag){
					flag = false;
				}
				else{
					flag = true;
				}
			}
			System.out.println();
		}

	}
}
0