結果
問題 | No.179 塗り分け |
ユーザー | kenkoooo |
提出日時 | 2015-04-18 00:53:30 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,354 bytes |
コンパイル時間 | 2,484 ms |
コンパイル使用メモリ | 78,124 KB |
実行使用メモリ | 57,088 KB |
最終ジャッジ日時 | 2024-10-02 14:14:21 |
合計ジャッジ時間 | 9,664 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
54,196 KB |
testcase_01 | AC | 112 ms
53,956 KB |
testcase_02 | AC | 115 ms
53,852 KB |
testcase_03 | AC | 112 ms
54,148 KB |
testcase_04 | AC | 115 ms
53,848 KB |
testcase_05 | AC | 105 ms
53,036 KB |
testcase_06 | AC | 120 ms
53,836 KB |
testcase_07 | AC | 123 ms
53,964 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 111 ms
52,840 KB |
testcase_11 | AC | 115 ms
53,340 KB |
testcase_12 | AC | 178 ms
56,936 KB |
testcase_13 | AC | 106 ms
52,520 KB |
testcase_14 | AC | 119 ms
54,160 KB |
testcase_15 | AC | 117 ms
54,024 KB |
testcase_16 | WA | - |
testcase_17 | AC | 103 ms
52,760 KB |
testcase_18 | AC | 141 ms
54,012 KB |
testcase_19 | AC | 132 ms
53,436 KB |
testcase_20 | AC | 125 ms
53,812 KB |
testcase_21 | AC | 127 ms
54,020 KB |
testcase_22 | AC | 198 ms
56,788 KB |
testcase_23 | AC | 126 ms
54,188 KB |
testcase_24 | AC | 162 ms
56,900 KB |
testcase_25 | AC | 124 ms
53,816 KB |
testcase_26 | WA | - |
testcase_27 | AC | 193 ms
56,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 171 ms
57,088 KB |
testcase_30 | WA | - |
testcase_31 | AC | 161 ms
56,876 KB |
testcase_32 | AC | 128 ms
56,076 KB |
testcase_33 | AC | 188 ms
56,260 KB |
testcase_34 | WA | - |
testcase_35 | AC | 199 ms
56,796 KB |
testcase_36 | AC | 115 ms
54,056 KB |
testcase_37 | AC | 117 ms
54,096 KB |
testcase_38 | AC | 114 ms
54,196 KB |
testcase_39 | AC | 106 ms
53,004 KB |
testcase_40 | AC | 115 ms
53,944 KB |
testcase_41 | AC | 104 ms
52,696 KB |
testcase_42 | AC | 115 ms
53,924 KB |
testcase_43 | AC | 130 ms
53,948 KB |
testcase_44 | AC | 150 ms
56,296 KB |
testcase_45 | AC | 118 ms
53,820 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int H = sc.nextInt(); int W = sc.nextInt(); char[][] map = new char[H][]; for (int i = 0; i < map.length; i++) { map[i] = sc.next().toCharArray(); } int cnt = 0; for (int i = 0; i < map.length; i++) { for (int j = 0; j < map[i].length; j++) { if (map[i][j] == '#') { cnt++; } } } if (cnt % 2 == 1 || cnt == 0) { System.out.println("NO"); return; } for (int x = 0; x < H - 1; x++) { for (int y = 0; y < W - 1; y++) { if (x == 0 && y == 0) { continue; } if (check(x, y, map)) { System.out.println("YES"); return; } } } System.out.println("NO"); } static boolean check(int x, int y, char[][] origin) { char[][] map = new char[origin.length][origin[0].length]; for (int i = 0; i < map.length; i++) { for (int j = 0; j < map[i].length; j++) { map[i][j] = origin[i][j]; } } for (int i = 0; i < map.length; i++) { for (int j = 0; j < map[i].length; j++) { int h = i + x; int w = j + y; if (map[i][j] == '#') { if (h >= map.length || w >= map[i].length || map[h][w] != '#') { return false; } map[i][j] = '.'; map[h][w] = '.'; } } } return true; } }