結果

問題 No.402 最も海から遠い場所
ユーザー 37zigen37zigen
提出日時 2016-07-23 12:00:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,004 ms / 3,000 ms
コード長 747 bytes
コンパイル時間 2,973 ms
コンパイル使用メモリ 77,668 KB
実行使用メモリ 176,520 KB
最終ジャッジ日時 2024-11-06 14:53:23
合計ジャッジ時間 11,885 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,192 KB
testcase_01 AC 133 ms
41,344 KB
testcase_02 AC 143 ms
41,856 KB
testcase_03 AC 133 ms
41,420 KB
testcase_04 AC 135 ms
41,416 KB
testcase_05 AC 132 ms
41,184 KB
testcase_06 AC 118 ms
40,096 KB
testcase_07 AC 134 ms
41,564 KB
testcase_08 AC 133 ms
41,400 KB
testcase_09 AC 134 ms
41,012 KB
testcase_10 AC 128 ms
41,404 KB
testcase_11 AC 144 ms
41,352 KB
testcase_12 AC 139 ms
41,776 KB
testcase_13 AC 175 ms
42,600 KB
testcase_14 AC 180 ms
41,960 KB
testcase_15 AC 262 ms
48,752 KB
testcase_16 AC 315 ms
48,992 KB
testcase_17 AC 641 ms
97,484 KB
testcase_18 AC 1,004 ms
176,520 KB
testcase_19 AC 987 ms
176,480 KB
testcase_20 AC 993 ms
176,424 KB
testcase_21 AC 978 ms
176,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		solver();
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int H = sc.nextInt();
		int W = sc.nextInt();
		char[][] table = new char[H][W];
		dis = new int[H][W];

		for (int i = 0; i < H; i++) {
			table[i] = sc.next().toCharArray();
		}

		int[][] dp = new int[H + 2][W + 2];

		int ans = 0;
		for (int i = 1; i <= H; i++) {
			for (int j = 1; j <= W; j++) {
				if (table[i-1][j-1] == '.')
					continue;
				dp[i][j] = Math.min(dp[i - 1][j - 1] + 1, dp[i - 1][j] + 1);
				dp[i][j] = Math.min(dp[i][j], dp[i][j - 1] + 1);

				ans = Math.max(ans, dp[i][j]);
			}
		}
		System.out.println((ans + 1) / 2);

	}

	static int[][] dis;
}
0