結果

問題 No.402 最も海から遠い場所
ユーザー AreTrashAreTrash
提出日時 2016-07-21 03:38:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 877 ms / 3,000 ms
コード長 533 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 119,504 KB
最終ジャッジ日時 2024-11-06 10:11:41
合計ジャッジ時間 10,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,092 KB
testcase_01 AC 133 ms
54,572 KB
testcase_02 AC 143 ms
54,036 KB
testcase_03 AC 133 ms
54,240 KB
testcase_04 AC 132 ms
53,804 KB
testcase_05 AC 135 ms
53,872 KB
testcase_06 AC 134 ms
54,152 KB
testcase_07 AC 134 ms
53,864 KB
testcase_08 AC 133 ms
54,016 KB
testcase_09 AC 134 ms
53,920 KB
testcase_10 AC 132 ms
53,880 KB
testcase_11 AC 141 ms
53,976 KB
testcase_12 AC 136 ms
54,044 KB
testcase_13 AC 176 ms
54,336 KB
testcase_14 AC 177 ms
54,156 KB
testcase_15 AC 244 ms
57,036 KB
testcase_16 AC 315 ms
58,040 KB
testcase_17 AC 598 ms
79,480 KB
testcase_18 AC 877 ms
119,504 KB
testcase_19 AC 832 ms
119,360 KB
testcase_20 AC 865 ms
119,464 KB
testcase_21 AC 862 ms
119,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Yuki2_2{	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int H = sc.nextInt();
		int W = sc.nextInt();
		int dp[][] = new int[H + 2][W + 2];
		int res = 0;
		
		for(int i = 1; i <= H; i++){
		String input = sc.next();
			for(int j = 1; j <= W; j++){
				if(input.charAt(j - 1) == '#'){
					dp[i][j] = Math.min(dp[i - 1][j - 1], Math.min(dp[i - 1][j], dp[i][j - 1])) + 1;
					res = Math.max(res, dp[i][j]);
				}
			}
		}
		System.out.println((res + 1) / 2);
	}
}
0