結果

問題 No.82 市松模様
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-20 18:11:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 186 ms / 5,000 ms
コード長 960 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 76,924 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-11-21 10:49:11
合計ジャッジ時間 4,239 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,312 KB
testcase_01 AC 133 ms
41,076 KB
testcase_02 AC 126 ms
40,948 KB
testcase_03 AC 121 ms
39,760 KB
testcase_04 AC 137 ms
41,264 KB
testcase_05 AC 136 ms
41,296 KB
testcase_06 AC 138 ms
40,932 KB
testcase_07 AC 162 ms
41,304 KB
testcase_08 AC 186 ms
41,620 KB
testcase_09 AC 182 ms
40,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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[][] ans = new String[h][w];
		for(int i = 0 ; i < h ; i++) {
			for(int j = 0 ; j < w ; j++) {
				if(c.equals("B")) {
					if(i % 2 == 0) {
						if(j % 2 == 0) {
							ans[i][j] = "B";
						} else {
							ans[i][j] = "W";
						}
					} else {
						if(j % 2 == 0) {
							ans[i][j] = "W";
						} else {
							ans[i][j] = "B";
						}
					}
				} else {
					if(i % 2 == 0) {
						if(j % 2 == 0) {
							ans[i][j] = "W";
						} else {
							ans[i][j] = "B";
						}
					} else {
						if(j % 2 == 0) {
							ans[i][j] = "B";
						} else {
							ans[i][j] = "W";
						}
					}
				}
			}
		}
		for(int i = 0 ; i < h ; i++) {
			for(int j = 0 ; j < w ; j++) {
				System.out.print(ans[i][j]);
			}
			System.out.println();
		}
 	}
}

0