結果
問題 | No.82 市松模様 |
ユーザー | kohaku_kohaku |
提出日時 | 2016-11-12 06:49:33 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 189 ms / 5,000 ms |
コード長 | 908 bytes |
コンパイル時間 | 2,102 ms |
コンパイル使用メモリ | 76,996 KB |
実行使用メモリ | 48,536 KB |
最終ジャッジ日時 | 2024-11-25 19:21:01 |
合計ジャッジ時間 | 4,312 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
48,304 KB |
testcase_01 | AC | 133 ms
47,668 KB |
testcase_02 | AC | 132 ms
47,952 KB |
testcase_03 | AC | 131 ms
47,668 KB |
testcase_04 | AC | 139 ms
48,016 KB |
testcase_05 | AC | 135 ms
47,820 KB |
testcase_06 | AC | 140 ms
47,904 KB |
testcase_07 | AC | 137 ms
47,760 KB |
testcase_08 | AC | 180 ms
48,416 KB |
testcase_09 | AC | 189 ms
48,536 KB |
ソースコード
import java.util.*; 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 [][]map = new String [H][W]; map[0][0]=C; for(int i=0; i<H; i++){ if(i!=0){ if( "B".equals(map[i-1][0]) ){ map[i][0]="W"; }else{ map[i][0]="B"; } } for(int j=1; j<W; j++){ if( "B".equals(map[i][j-1]) ){ map[i][j]="W"; }else{ map[i][j]="B"; } } } for(int i=0; i<H; i++){ for(int j=0; j<W; j++){ System.out.print(map[i][j]); } System.out.println(); } } }