結果

問題 No.707 書道
ユーザー hedwig100hedwig100
提出日時 2020-05-03 15:31:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 665 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-12 18:22:24
合計ジャッジ時間 1,281 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 48 ms
10,880 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 70 ms
10,752 KB
testcase_06 AC 100 ms
10,752 KB
testcase_07 AC 120 ms
10,880 KB
testcase_08 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 11
import sys
sys.setrecursionlimit(100000000)
from itertools import product

def main():
    H,W = map(int,input().split())
    paper = [list(input()) for _ in range(H)]
    f = lambda y,x: sum(((y - i - 1)**2 + (x - j - 1)**2)**0.5 for i,j in product(range(H),range(W)) if paper[i][j] == '1')
    ans = INF
    for i in range(1,W + 1):
        ny,nx = 0,i
        ans = min(ans,f(ny,nx))
        ny,nx = H + 1,i
        ans = min(ans,f(ny,nx))
    for i in range(1,H + 1):
        ny,nx = i,0
        ans = min(ans,f(ny,nx))
        ny,nx = i,W + 1
        ans = min(ans,f(ny,nx))
    print(ans)
if __name__ == '__main__':
    main()
0