結果

問題 No.82 市松模様
ユーザー SuunnSuunn
提出日時 2018-11-20 06:09:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 5,000 ms
コード長 471 bytes
コンパイル時間 2,026 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-06-06 21:06:27
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,428 KB
testcase_01 AC 112 ms
41,048 KB
testcase_02 AC 111 ms
40,656 KB
testcase_03 AC 117 ms
41,032 KB
testcase_04 AC 122 ms
41,172 KB
testcase_05 AC 122 ms
41,156 KB
testcase_06 AC 118 ms
40,916 KB
testcase_07 AC 128 ms
41,360 KB
testcase_08 AC 162 ms
41,628 KB
testcase_09 AC 151 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
		int W = sc.nextInt();
		int H = sc.nextInt();
		String c = sc.next();
		char C = c.charAt(0);
		char notC = (char) ('B' + 'W' - C);
		for(int i=0;i<H;i++){
			for(int j=0;j<W;j++){
				if((i+j)%2==0){
					System.out.print(C);
				}else{
					System.out.print(notC);
				}
			}
			System.out.println();
		}
		
		
	}
}
0