結果

問題 No.82 市松模様
ユーザー papipenpapipen
提出日時 2017-04-11 20:03:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 76,356 KB
実行使用メモリ 42,188 KB
最終ジャッジ日時 2024-07-18 09:06:01
合計ジャッジ時間 3,739 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,432 KB
testcase_01 AC 114 ms
40,236 KB
testcase_02 AC 105 ms
40,284 KB
testcase_03 AC 119 ms
41,452 KB
testcase_04 AC 116 ms
41,332 KB
testcase_05 AC 114 ms
41,428 KB
testcase_06 AC 124 ms
41,496 KB
testcase_07 AC 118 ms
41,636 KB
testcase_08 AC 146 ms
41,916 KB
testcase_09 AC 165 ms
42,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N082{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int w = s.nextInt();
		int h = s.nextInt();
		String a = s.next();
		String b;
		for(int i = 0; i < h; i++){
			b = a.equals("B") ? "W" : "B";
			for(int j = 0; j < w / 2; j++){
				System.out.print(a+b);
			}
			if(w % 2 != 0){
				System.out.println(a);
			}else{
				System.out.println();
			}
			a = b;
		}
	}
}
0