結果
問題 | No.82 市松模様 |
ユーザー | Grenache |
提出日時 | 2015-09-23 00:54:27 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 138 ms / 5,000 ms |
コード長 | 571 bytes |
コンパイル時間 | 3,472 ms |
コンパイル使用メモリ | 74,860 KB |
実行使用メモリ | 41,796 KB |
最終ジャッジ日時 | 2024-07-19 08:45:23 |
合計ジャッジ時間 | 5,468 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
41,796 KB |
testcase_01 | AC | 116 ms
40,168 KB |
testcase_02 | AC | 129 ms
41,016 KB |
testcase_03 | AC | 131 ms
41,468 KB |
testcase_04 | AC | 134 ms
41,280 KB |
testcase_05 | AC | 130 ms
41,108 KB |
testcase_06 | AC | 132 ms
41,132 KB |
testcase_07 | AC | 134 ms
41,440 KB |
testcase_08 | AC | 133 ms
41,128 KB |
testcase_09 | AC | 138 ms
41,456 KB |
ソースコード
import java.util.Scanner; public class Main_yukicoder82 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int w = sc.nextInt(); int h = sc.nextInt(); char[] bw = new char[2]; bw[0] = sc.next().charAt(0); bw[1] = bw[0] == 'B' ? 'W' : 'B'; for (int i = 0; i < h; i++) { StringBuilder sb = new StringBuilder(); for (int j = 0; j < w; j++) { sb.append(bw[(i + j) % 2]); } System.out.println(sb); } sc.close(); } }