結果

問題 No.82 市松模様
ユーザー m2543315647m2543315647
提出日時 2015-05-14 15:15:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 328 bytes
コンパイル時間 4,271 ms
コンパイル使用メモリ 74,324 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-07-06 03:37:01
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,400 KB
testcase_01 AC 104 ms
40,936 KB
testcase_02 AC 110 ms
41,052 KB
testcase_03 AC 106 ms
41,024 KB
testcase_04 AC 110 ms
40,452 KB
testcase_05 AC 108 ms
41,100 KB
testcase_06 AC 116 ms
41,116 KB
testcase_07 AC 120 ms
41,000 KB
testcase_08 AC 165 ms
41,512 KB
testcase_09 AC 145 ms
40,852 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() ,h=sc.nextInt();
	boolean c=sc.next().charAt(0)=='W';
	for(int i=c?1:0;i<h+(c?1:0);i++){
	for(int j=0;j<w;j++)
	System.out.print(j%2==0^i%2==0?'W':'B');
	System.out.println();
	}
	}
}
0