結果

問題 No.82 市松模様
ユーザー abcabc
提出日時 2016-11-02 12:47:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 174 ms / 5,000 ms
コード長 724 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 73,872 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-11-25 01:26:24
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,576 KB
testcase_01 AC 123 ms
53,800 KB
testcase_02 AC 119 ms
53,532 KB
testcase_03 AC 117 ms
53,632 KB
testcase_04 AC 115 ms
52,876 KB
testcase_05 AC 127 ms
53,908 KB
testcase_06 AC 127 ms
53,896 KB
testcase_07 AC 131 ms
53,612 KB
testcase_08 AC 163 ms
52,736 KB
testcase_09 AC 174 ms
54,332 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