結果

問題 No.82 市松模様
ユーザー k_kadorak_kadora
提出日時 2015-05-23 23:40:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 5,000 ms
コード長 715 bytes
コンパイル時間 3,529 ms
コンパイル使用メモリ 76,776 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-07-06 06:23:22
合計ジャッジ時間 5,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,208 KB
testcase_01 AC 133 ms
41,100 KB
testcase_02 AC 132 ms
41,200 KB
testcase_03 AC 133 ms
41,080 KB
testcase_04 AC 138 ms
41,308 KB
testcase_05 AC 136 ms
41,184 KB
testcase_06 AC 143 ms
41,348 KB
testcase_07 AC 150 ms
41,364 KB
testcase_08 AC 192 ms
41,700 KB
testcase_09 AC 187 ms
41,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Ichimatsu{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int w,h;
		char b;
		w = sc.nextInt();
		h = sc.nextInt();
		b = sc.next().charAt(0);
		if(b == 'B'){
			for(int i = 0;i<h;i++){
				for(int j = 0;j<w;j++){
					if(((j%2 == 0) && (i%2 == 0))||((j%2 == 1)&&(i%2 == 1))){
						System.out.print("B");
					}else{
						System.out.print("W");
					}
				}
				System.out.println("");
			}
		}else{
			for(int i = 0;i<h;i++){
				for(int j = 0;j<w;j++){
					if(((j%2 == 0) && (i%2 == 0))||((j%2 == 1)&&(i%2 == 1))){
						System.out.print("W");
					}else{
						System.out.print("B");
					}
				}
				System.out.println("");
			}
		}
	}
}
		
0