結果
問題 | No.82 市松模様 |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-04-26 22:32:12 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 58 ms / 5,000 ms |
コード長 | 1,288 bytes |
コンパイル時間 | 2,813 ms |
コンパイル使用メモリ | 78,028 KB |
実行使用メモリ | 50,272 KB |
最終ジャッジ日時 | 2024-09-13 12:50:29 |
合計ジャッジ時間 | 3,403 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,028 KB |
testcase_01 | AC | 55 ms
50,124 KB |
testcase_02 | AC | 54 ms
50,248 KB |
testcase_03 | AC | 54 ms
49,916 KB |
testcase_04 | AC | 56 ms
50,092 KB |
testcase_05 | AC | 55 ms
50,272 KB |
testcase_06 | AC | 56 ms
50,132 KB |
testcase_07 | AC | 56 ms
50,212 KB |
testcase_08 | AC | 58 ms
49,832 KB |
testcase_09 | AC | 57 ms
50,272 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.time.format.DateTimeFormatter; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); String[] inputs = reader.readLine().split(" "); int W = Integer.parseInt(inputs[0]); int H = Integer.parseInt(inputs[1]); String C = inputs[2]; for (int i = 0; i < H; i++) { String leftMostPattern; if (i % 2 == 0) { leftMostPattern = C; } else { leftMostPattern = nextPattern(C); } StringBuilder builder = new StringBuilder(leftMostPattern); for (int j = 1; j < W; j++) { leftMostPattern = nextPattern(leftMostPattern); builder.append(leftMostPattern); } System.out.println(builder.toString()); } } private static String nextPattern(String currentPattern) { if (currentPattern.equals("B")) { return "W"; } else { return "B"; } } }