結果
問題 | No.402 最も海から遠い場所 |
ユーザー | jp_ste |
提出日時 | 2016-08-12 15:05:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,998 bytes |
コンパイル時間 | 2,543 ms |
コンパイル使用メモリ | 77,624 KB |
実行使用メモリ | 119,116 KB |
最終ジャッジ日時 | 2024-11-07 12:05:11 |
合計ジャッジ時間 | 13,678 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
40,276 KB |
testcase_01 | AC | 124 ms
41,392 KB |
testcase_02 | AC | 133 ms
41,364 KB |
testcase_03 | WA | - |
testcase_04 | AC | 116 ms
40,288 KB |
testcase_05 | AC | 124 ms
41,192 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 112 ms
39,812 KB |
testcase_09 | AC | 126 ms
41,316 KB |
testcase_10 | WA | - |
testcase_11 | AC | 128 ms
41,428 KB |
testcase_12 | WA | - |
testcase_13 | AC | 200 ms
41,688 KB |
testcase_14 | AC | 183 ms
41,652 KB |
testcase_15 | AC | 307 ms
44,896 KB |
testcase_16 | AC | 386 ms
48,604 KB |
testcase_17 | AC | 903 ms
82,828 KB |
testcase_18 | AC | 2,984 ms
118,740 KB |
testcase_19 | AC | 1,190 ms
119,116 KB |
testcase_20 | AC | 801 ms
118,684 KB |
testcase_21 | AC | 1,132 ms
118,720 KB |
ソースコード
import java.io.PrintWriter; import java.util.Scanner; public class Main { static Scanner scan = new Scanner(System.in); static PrintWriter out = new PrintWriter(System.out); static int H, W; static char[][] map; static int [][] ansMap; public static void main(String[] args) { String line = scan.nextLine(); String values[] = line.split(" "); H = Integer.parseInt(values[0]); W = Integer.parseInt(values[1]);; map = new char[H][W]; ansMap = new int[H][W]; for(int i=0; i<H; i++) { line = scan.nextLine(); for(int j=0; j<W; j++) { map[i][j] = line.charAt(j); if(map[i][j] == '#') { ansMap[i][j] = -1; } if((i==0 || i==W-1 || j==0 || j==H-1) && map[i][j] == '#') { ansMap[i][j] = 1; } } } int[] dx = {-1, 0, 1, -1, 1, -1, 0, 1}; int[] dy = {-1, -1, -1, 0, 0, 1, 1, 1}; for(int count=0; count<=1500; count++) { boolean find = false; for(int i=0; i<H; i++) { for(int j=0; j<W; j++) { if(ansMap[i][j] == count) { for(int k=0; k<dx.length; k++) { int nextX = j + dx[k]; int nextY = i + dy[k]; if(nextX >= 0 && nextX < W && nextY >= 0 && nextY < H && ansMap[nextY][nextX] == -1) { ansMap[nextY][nextX] = (count+1); find = true; } } } } } if(find == false) { System.out.println(count==0? 1500 : count); break; } } } }