結果

問題 No.82 市松模様
ユーザー fal_rndfal_rnd
提出日時 2017-08-08 18:44:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 400 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 76,376 KB
実行使用メモリ 54,980 KB
最終ジャッジ日時 2024-10-12 00:15:02
合計ジャッジ時間 4,442 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,900 KB
testcase_01 AC 161 ms
54,828 KB
testcase_02 AC 129 ms
53,696 KB
testcase_03 AC 129 ms
53,920 KB
testcase_04 AC 130 ms
53,968 KB
testcase_05 AC 158 ms
54,808 KB
testcase_06 AC 159 ms
54,980 KB
testcase_07 AC 174 ms
54,860 KB
testcase_08 AC 168 ms
54,780 KB
testcase_09 AC 169 ms
54,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class M{
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}
	public static void main(String[]$){
		int w=getInt(),h=getInt();
		char c=s.next().charAt(0);
		for(int i=0;i<h;++i) {
			String v=String.valueOf(c);
			for(int j=1;j<w;++j) {
				v+=v.charAt(j-1)=='B'?'W':'B';
			}
			c=c=='B'?'W':'B';
			System.out.println(v);
		}
	}
}
0