結果

問題 No.402 最も海から遠い場所
ユーザー jp_stejp_ste
提出日時 2016-08-12 21:02:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,019 ms / 3,000 ms
コード長 1,157 bytes
コンパイル時間 5,825 ms
コンパイル使用メモリ 77,340 KB
実行使用メモリ 130,836 KB
最終ジャッジ日時 2024-11-07 12:16:06
合計ジャッジ時間 11,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,508 KB
testcase_01 AC 126 ms
41,548 KB
testcase_02 AC 136 ms
41,480 KB
testcase_03 AC 135 ms
41,360 KB
testcase_04 AC 128 ms
41,360 KB
testcase_05 AC 130 ms
41,300 KB
testcase_06 AC 130 ms
41,072 KB
testcase_07 AC 128 ms
41,200 KB
testcase_08 AC 129 ms
41,244 KB
testcase_09 AC 128 ms
41,120 KB
testcase_10 AC 133 ms
41,348 KB
testcase_11 AC 139 ms
41,616 KB
testcase_12 AC 118 ms
40,460 KB
testcase_13 AC 181 ms
41,820 KB
testcase_14 AC 168 ms
41,980 KB
testcase_15 AC 246 ms
44,240 KB
testcase_16 AC 315 ms
48,792 KB
testcase_17 AC 640 ms
82,748 KB
testcase_18 AC 1,019 ms
130,556 KB
testcase_19 AC 894 ms
130,740 KB
testcase_20 AC 998 ms
130,740 KB
testcase_21 AC 981 ms
130,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main2 {
    static Scanner scan = new Scanner(System.in);
    
    static int[] dx = {-1, -1, 0};
    static int[] dy = {0, -1, -1};
    
    public static void main(String[] args) {
        
        int H = scan.nextInt();
        int W = scan.nextInt();
        
        char[][] map = new char[H][W];
        int [][] ansMap = new int[H][W];
        int ans = 0;
        
        for(int i=0; i<H; i++) {
            map[i] = scan.next().toCharArray();
        }
        
        for(int i=0; i<H; i++) {
            for(int j=0; j<W; j++) {
                if(map[i][j] == '.') continue;
         
                int v = Integer.MAX_VALUE;
                if(i==0 || j==0) {
                    v = 1;
                } else {
                    for(int k=0; k<dx.length; k++) {
                        int nx = j + dx[k];
                        int ny = i + dy[k];
                        v = Math.min(v, ansMap[ny][nx]+1);
                    }
                }
                ansMap[i][j] = v;
                ans = Math.max(ans, v);
            }
        }
        System.out.println((ans+1)/2);
    }
}
0