結果

問題 No.82 市松模様
ユーザー kaoetayakaoetaya
提出日時 2016-11-10 15:24:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 5,000 ms
コード長 780 bytes
コンパイル時間 3,345 ms
コンパイル使用メモリ 77,416 KB
実行使用メモリ 54,072 KB
最終ジャッジ日時 2024-11-25 07:10:37
合計ジャッジ時間 5,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,908 KB
testcase_01 AC 119 ms
54,048 KB
testcase_02 AC 107 ms
52,836 KB
testcase_03 AC 117 ms
53,912 KB
testcase_04 AC 113 ms
53,764 KB
testcase_05 AC 121 ms
53,828 KB
testcase_06 AC 127 ms
53,932 KB
testcase_07 AC 133 ms
54,072 KB
testcase_08 AC 162 ms
53,208 KB
testcase_09 AC 166 ms
54,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		int w = s.nextInt(),h = s.nextInt();
		String c = s.next();
		
		String[] str = new String[w*h];
		
		for(int i=0;i<w*h;i++){
			if(i >= w && i%w == 0 && str[i-1].equals("B") && w%2 == 0){
				str[i] = "B";
			}
			else if(i >= w && i%w == 0 && str[i-1].equals("W") && w%2 == 0){
				str[i] = "W";
			}
			else if(c.equals("B")){
				str[i] = c;
				c = "W";
			}
			else if(c.equals("W")){
				str[i] = c;
				c = "B";
			}
		}
		
		int cnt=0;
		
		for(int i=0;i<w*h;i++){
			if(cnt == w){
				System.out.println();
				cnt = 0;
				System.out.print(str[i]);
				cnt++;
			}
			else{
				System.out.print(str[i]);
				cnt++;
			}
		}
    }
}
0