結果

問題 No.707 書道
ユーザー prd_xxxprd_xxx
提出日時 2018-06-29 22:49:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,520 KB
最終ジャッジ日時 2024-07-01 00:05:46
合計ジャッジ時間 1,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,760 KB
testcase_01 AC 33 ms
53,000 KB
testcase_02 AC 73 ms
74,772 KB
testcase_03 AC 33 ms
53,972 KB
testcase_04 AC 35 ms
53,020 KB
testcase_05 AC 119 ms
76,388 KB
testcase_06 AC 156 ms
76,520 KB
testcase_07 AC 181 ms
76,520 KB
testcase_08 AC 43 ms
62,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
H,W = map(int,input().split())
src = [[]]
src += ['0' + input() + '0' for i in range(H)]

ans = float('inf')
for px in (0,W+1):
    for py in range(1,H+1):
        tmp = 0
        for y in range(1,H+1):
            for x in range(1,W+1):
                if src[y][x] == '0': continue
                tmp += math.hypot(px-x, py-y)
        ans = min(ans, tmp)
for py in (0,H+1):
    for px in range(1,W+1):
        tmp = 0
        for y in range(1,H+1):
            for x in range(1,W+1):
                if src[y][x] == '0': continue
                tmp += math.hypot(px-x, py-y)
        ans = min(ans, tmp)
print(ans)
0