結果

問題 No.707 書道
ユーザー yansi819yansi819
提出日時 2024-05-14 11:00:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 74,520 KB
最終ジャッジ日時 2024-05-14 11:00:42
合計ジャッジ時間 1,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,424 KB
testcase_01 AC 39 ms
53,920 KB
testcase_02 AC 53 ms
65,108 KB
testcase_03 AC 42 ms
53,160 KB
testcase_04 AC 39 ms
53,484 KB
testcase_05 AC 65 ms
69,540 KB
testcase_06 AC 72 ms
72,600 KB
testcase_07 AC 80 ms
74,520 KB
testcase_08 AC 47 ms
60,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = [[-1] * (W + 2) for _ in range(H + 2)]
for i in range(1, H + 1):
    A[i] = [-1] + list(map(int, input().rstrip())) + [-1]
A[0][0], A[0][W + 1], A[i + 1][0], A[i + 1][W + 1] = -2, -2, -2, -2
ans = 1e9
for i in range(0, H + 2):
    for j in range(0, W + 2):
        if A[i][j] == -1:
            sum = 0
            for x in range(1, H + 1):
                for y in range(1, W + 1):
                    if A[x][y] == 1:
                        d = ((i - x) * (i - x) + (j - y) * (j - y)) ** 0.5
                        sum += d
            ans = min(ans, sum)
print(ans)
0