結果
問題 | No.402 最も海から遠い場所 |
ユーザー | 14番 |
提出日時 | 2016-09-01 08:35:11 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,905 bytes |
コンパイル時間 | 4,115 ms |
コンパイル使用メモリ | 114,916 KB |
実行使用メモリ | 83,128 KB |
最終ジャッジ日時 | 2024-11-15 16:31:46 |
合計ジャッジ時間 | 6,779 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
25,220 KB |
testcase_01 | WA | - |
testcase_02 | AC | 28 ms
25,280 KB |
testcase_03 | AC | 28 ms
27,140 KB |
testcase_04 | AC | 28 ms
25,220 KB |
testcase_05 | AC | 28 ms
25,012 KB |
testcase_06 | AC | 28 ms
22,836 KB |
testcase_07 | AC | 29 ms
27,268 KB |
testcase_08 | AC | 28 ms
25,020 KB |
testcase_09 | AC | 28 ms
25,136 KB |
testcase_10 | AC | 29 ms
25,264 KB |
testcase_11 | AC | 29 ms
25,132 KB |
testcase_12 | AC | 28 ms
25,092 KB |
testcase_13 | AC | 30 ms
27,120 KB |
testcase_14 | AC | 29 ms
25,148 KB |
testcase_15 | AC | 35 ms
27,828 KB |
testcase_16 | AC | 38 ms
28,360 KB |
testcase_17 | AC | 141 ms
55,892 KB |
testcase_18 | AC | 262 ms
83,128 KB |
testcase_19 | AC | 138 ms
39,936 KB |
testcase_20 | AC | 249 ms
75,136 KB |
testcase_21 | AC | 222 ms
75,008 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Text; using System.Linq; class Program { public void Proc() { Reader.IsDebug = false; int[] inpt = Reader.ReadLine().Split(' ').Select(a => int.Parse(a)).ToArray(); int h = inpt[0]; int w = inpt[1]; char[,] map = new char[h, w]; int[,] step = new int[h, w]; int maxHen = 0; for (int i = 0; i < inpt[0]; i++) { string row = Reader.ReadLine(); for (int j = 0; j < inpt[1]; j++) { map[i, j] = row[j]; if (row[j] == '#') { int val = 1; if (i == 0 || i == h - 1 || j == 0 || j == w - 1) { } else { val = Math.Min(step[i - 1, j - 1] + 1, Math.Min(step[i, j - 1] + 1, step[i - 1, j] + 1)); } step[i, j] = val; maxHen = Math.Max(maxHen, val); } } } Console.WriteLine((maxHen + 1) / 2); } public class Reader { public static bool IsDebug = true; private static String PlainInput = @" 8 8 .#..#... .######. #####... #####.#. ######## ######.# #####... ...####. "; private static System.IO.StringReader Sr = null; public static string ReadLine() { if (IsDebug) { if (Sr == null) { Sr = new System.IO.StringReader(PlainInput.Trim()); } return Sr.ReadLine(); } else { return Console.ReadLine(); } } } static void Main() { Program prg = new Program(); prg.Proc(); } }