結果

問題 No.82 市松模様
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-12 06:49:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 908 bytes
コンパイル時間 2,267 ms
コンパイル使用メモリ 78,036 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-05-04 09:20:00
合計ジャッジ時間 3,778 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,028 KB
testcase_01 AC 109 ms
53,980 KB
testcase_02 AC 108 ms
54,500 KB
testcase_03 AC 98 ms
52,884 KB
testcase_04 AC 108 ms
41,684 KB
testcase_05 AC 100 ms
41,548 KB
testcase_06 AC 116 ms
41,736 KB
testcase_07 AC 125 ms
41,788 KB
testcase_08 AC 165 ms
42,080 KB
testcase_09 AC 155 ms
41,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int W = sc.nextInt();
        int H = sc.nextInt();
        String C = sc.next();
        String [][]map = new String [H][W];
        map[0][0]=C;
        for(int i=0; i<H; i++){
            if(i!=0){
                if( "B".equals(map[i-1][0]) ){
                    map[i][0]="W";
                }else{
                    map[i][0]="B";
                }
            }
            for(int j=1; j<W; j++){
                if( "B".equals(map[i][j-1]) ){
                    map[i][j]="W";
                }else{
                    map[i][j]="B";
                }
            }
        }
        for(int i=0; i<H; i++){
            for(int j=0; j<W; j++){
                System.out.print(map[i][j]);
            }
            System.out.println();
        }
    }
}
0