結果

問題 No.82 市松模様
ユーザー ちよちゃんちよちゃん
提出日時 2016-06-04 14:50:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 204 ms / 5,000 ms
コード長 938 bytes
コンパイル時間 3,925 ms
コンパイル使用メモリ 77,844 KB
実行使用メモリ 54,596 KB
最終ジャッジ日時 2024-10-08 07:51:41
合計ジャッジ時間 6,121 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
53,928 KB
testcase_01 AC 145 ms
53,684 KB
testcase_02 AC 138 ms
53,812 KB
testcase_03 AC 138 ms
54,156 KB
testcase_04 AC 147 ms
53,980 KB
testcase_05 AC 150 ms
53,896 KB
testcase_06 AC 149 ms
53,956 KB
testcase_07 AC 164 ms
54,596 KB
testcase_08 AC 202 ms
54,132 KB
testcase_09 AC 204 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki82 {
	
	public static void main(String[] args) {
 
		Scanner scan = new Scanner(System.in);
		
		int w = scan.nextInt();
		int h = scan.nextInt();
		String c = scan.next();
		
		scan.close();
		
		for (int j = 1; j <= h; j++) {
			for (int i = 1; i <= w; i++) {
				test(c,j,i);
			}
			System.out.print("\n");
		}
	}
	
	private static void test(String str,int j,int i) {
		
		if("B".equals(str)){
			if(j%2 == 0) {
				if (i%2 == 0){
					System.out.print("B");
				} else { 
					System.out.print("W");
				}
			}else {
				if (i%2 != 0){
					System.out.print("B");
				} else { 
					System.out.print("W");
				}			
			}
		} else {
			if(j%2 == 0) {
				if (i%2 == 0){
					System.out.print("W");
				} else { 
					System.out.print("B");
				}
			}else {
				if (i%2 != 0){
					System.out.print("W");
				} else { 
					System.out.print("B");
				}			
			}			
		}
	}
}
0