結果

問題 No.707 書道
ユーザー MineMine
提出日時 2020-09-15 23:11:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 607 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-22 02:49:32
合計ジャッジ時間 1,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 56 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 107 ms
11,008 KB
testcase_06 AC 149 ms
10,880 KB
testcase_07 AC 187 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
h, w = map(int, input().split())
p = [input() for i in range(h)]
black = []
for i in range(h):
    for g in range(w):
        if p[i][g] == "1":
            black.append((i+1, g+1))

red = defaultdict(float)
for i in range(1, h+1):
    for x, y in black:
        red[(i, 0)] += ((x-i)**2 + (y)**2)**0.5
        red[(i, w+1)] += ((x-i)**2 + (y-w-1)**2)**0.5


for i in range(1, w+1):
    for x, y in black:
        red[(0, i)] += ((x)**2 + (y-i)**2)**0.5
        red[(h+1, i)] += ((x-h-1)**2 + (y-i)**2)**0.5

if red == {}:
    print(0)
else:
    print(min(red.values()))
0