結果

問題 No.82 市松模様
ユーザー tsunabittsunabit
提出日時 2018-04-29 18:44:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 5,000 ms
コード長 1,614 bytes
コンパイル時間 3,422 ms
コンパイル使用メモリ 74,976 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-06-27 23:35:42
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,184 KB
testcase_01 AC 132 ms
41,304 KB
testcase_02 AC 122 ms
39,988 KB
testcase_03 AC 133 ms
41,444 KB
testcase_04 AC 137 ms
41,252 KB
testcase_05 AC 129 ms
41,220 KB
testcase_06 AC 137 ms
41,448 KB
testcase_07 AC 138 ms
40,472 KB
testcase_08 AC 163 ms
40,460 KB
testcase_09 AC 187 ms
41,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// ***問題文***
// 幅Wと高さHと左上の色が指定されるので市松模様を描け。
// 市松模様は、黒と白が交互に現れる模様である。
// 模様は黒を'B'、白を'W'を使って描くものとする。
// 詳しくはサンプルを見てください。
// ***入力***
// W H C
// 幅Wと高さHと左上の色Cの3つの情報が与えられる。
// W,Hは1以上50以下の整数。(1<=W,H<=50)
// Cは'B'か'W'のどちらかである。
// ***出力***
// 市松模様を描け。最後の行にも改行を忘れずに。

public class No82 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int w = sc.nextInt();
        int h = sc.nextInt();
        String c = sc.next();
        String o = "";

        if("B".equals(c)) {
            o = "W";
        }else {
            o = "B";
        }

        for(int i = 0; i < h; i++) {
            for(int j = 0; j < w; j++) {
                if(i % 2 == 0) {
                    if(j % 2 == 0) {
                        System.out.print(c);
                    }else {
                        System.out.print(o);
                    }
                }else {
                    if(j % 2 == 0) {
                        System.out.print(o);
                    }else {
                        System.out.print(c);
                    }
                }
            }
            System.out.println("");
        }
        // System.out.println("");
    }
}
0