結果

問題 No.82 市松模様
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-31 22:56:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 730 bytes
コンパイル時間 4,048 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-05-02 01:49:02
合計ジャッジ時間 5,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,228 KB
testcase_01 AC 130 ms
41,116 KB
testcase_02 AC 128 ms
41,156 KB
testcase_03 AC 127 ms
41,200 KB
testcase_04 AC 129 ms
41,100 KB
testcase_05 AC 132 ms
41,080 KB
testcase_06 AC 133 ms
41,228 KB
testcase_07 AC 118 ms
41,792 KB
testcase_08 AC 118 ms
41,224 KB
testcase_09 AC 131 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No82 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int width = s.nextInt();
        int height = s.nextInt();
        String color1 = s.next();
        String color2 = color1.equals("B") ? "W" : "B";
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < height; i++) {
            for (int j = 0; j < width; j++) {
                if (i % 2 == 0 && j % 2 == 0 || i % 2 == 1 && j % 2 == 1) {
                    sb.append(color1);
                } else {
                    sb.append(color2);
                }
            }
            sb.append("\n");
        }
        System.out.print(sb.toString());
    }
}
0