結果

問題 No.707 書道
ユーザー tails1434tails1434
提出日時 2020-01-17 07:35:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,680 KB
最終ジャッジ日時 2024-06-25 12:27:01
合計ジャッジ時間 1,383 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,992 KB
testcase_01 AC 44 ms
52,736 KB
testcase_02 AC 66 ms
64,128 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 78 ms
71,680 KB
testcase_06 AC 75 ms
68,352 KB
testcase_07 AC 85 ms
69,632 KB
testcase_08 AC 50 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    H, W = map(int, input().split())
    P = list(input() for _ in range(H))
    ans = float('inf')
    
    for h1 in range(1,H+1):
        for w1 in [0,W+1]:
            tmp = 0
            for h in range(H):
                for w in range(W):
                    if P[h][w] == '1':
                        tmp += ((h + 1 - h1) ** 2 + (w + 1 - w1) ** 2) ** 0.5
            ans = min(ans, tmp)

    for w1 in range(1,W+1):
        for h1 in [0,H+1]:
            tmp = 0
            for h in range(H):
                for w in range(W):
                    if P[h][w] == '1':
                        tmp += ((h + 1 - h1) ** 2 + (w + 1 - w1) ** 2) ** 0.5
            ans = min(ans, tmp)

    print(ans)




if __name__ == "__main__":
    main()
0