結果

問題 No.82 市松模様
ユーザー abcabc
提出日時 2016-11-02 12:47:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 724 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 74,240 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-05-03 21:01:20
合計ジャッジ時間 3,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
39,992 KB
testcase_01 AC 111 ms
40,908 KB
testcase_02 AC 108 ms
41,276 KB
testcase_03 AC 108 ms
41,240 KB
testcase_04 AC 109 ms
40,256 KB
testcase_05 AC 124 ms
41,556 KB
testcase_06 AC 115 ms
40,144 KB
testcase_07 AC 126 ms
40,260 KB
testcase_08 AC 155 ms
41,256 KB
testcase_09 AC 161 ms
40,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int WIDTH = sc.nextInt();
        int HEIGHT = sc.nextInt();
        char FIRST_LETTER = sc.next().charAt(0);

        char[] pattern = new char[2];

        if (FIRST_LETTER == 'B') {
            pattern[0] = 'B';
            pattern[1] = 'W';
        } else if (FIRST_LETTER == 'W') {
            pattern[0] = 'W';
            pattern[1] = 'B';
        }

        for (int i = 0; i < HEIGHT; i++) {

            for (int j = 0; j < WIDTH; j++) {

                System.out.print(pattern[(i + j) % 2]);

            }

            System.out.println();

        }

    }

}
0