結果
問題 | No.82 市松模様 |
ユーザー | h_tyokinuhata |
提出日時 | 2016-01-24 02:53:41 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 186 ms / 5,000 ms |
コード長 | 689 bytes |
コンパイル時間 | 2,145 ms |
コンパイル使用メモリ | 77,244 KB |
実行使用メモリ | 42,056 KB |
最終ジャッジ日時 | 2024-09-21 15:06:47 |
合計ジャッジ時間 | 4,333 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
41,288 KB |
testcase_01 | AC | 137 ms
41,388 KB |
testcase_02 | AC | 132 ms
41,072 KB |
testcase_03 | AC | 130 ms
41,140 KB |
testcase_04 | AC | 137 ms
41,180 KB |
testcase_05 | AC | 139 ms
41,440 KB |
testcase_06 | AC | 145 ms
41,308 KB |
testcase_07 | AC | 152 ms
41,712 KB |
testcase_08 | AC | 181 ms
41,780 KB |
testcase_09 | AC | 186 ms
42,056 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int W = sc.nextInt(), H = sc.nextInt(); String C = sc.next(); String[][] mark = new String[W][H]; String C2; if(C.equals("B")) { C2 = "W"; } else { C2= "B"; } for(int i = 0; i < H; i++) { for(int j = 0; j < W; j++) { if(i % 2 == 0 && j % 2 != 0) { mark[j][i] = C2; } else if(i % 2 != 0 && j % 2 == 0) { mark[j][i] = C2; } else { mark[j][i] = C; } } } for(int i = 0; i < H; i++) { for(int j = 0; j < W; j++) { System.out.print(mark[j][i]); } System.out.println(); } } }