結果
問題 | No.82 市松模様 |
ユーザー | l1267976 |
提出日時 | 2017-03-18 23:20:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 138 ms / 5,000 ms |
コード長 | 861 bytes |
コンパイル時間 | 3,358 ms |
コンパイル使用メモリ | 81,108 KB |
実行使用メモリ | 41,396 KB |
最終ジャッジ日時 | 2024-07-04 19:55:48 |
合計ジャッジ時間 | 5,605 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
41,152 KB |
testcase_01 | AC | 121 ms
41,396 KB |
testcase_02 | AC | 106 ms
41,228 KB |
testcase_03 | AC | 133 ms
41,116 KB |
testcase_04 | AC | 138 ms
41,028 KB |
testcase_05 | AC | 134 ms
41,360 KB |
testcase_06 | AC | 117 ms
41,040 KB |
testcase_07 | AC | 125 ms
41,260 KB |
testcase_08 | AC | 113 ms
41,356 KB |
testcase_09 | AC | 128 ms
41,364 KB |
ソースコード
import java.util.Scanner; public class No82 { 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[] bw = new String[2]; bw[0] = c; if (c.equals("B")) { bw[1] = "W"; } else { bw[1] = "B"; } String baseline = ""; for (int x = 0; x < w + 1; x++) { baseline += (x % 2 == 0) ? bw[0] : bw[1]; } String line0 = baseline.substring(0, w); String Line1 = baseline.substring(1, w + 1); for (int y = 0; y < h; y++) { if (y % 2 == 0) { System.out.println(line0); } else { System.out.println(Line1); } } sc.close(); } }