結果
問題 | No.707 書道 |
ユーザー | ssmkzk |
提出日時 | 2019-06-20 17:35:19 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 809 bytes |
コンパイル時間 | 356 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-05-10 01:23:07 |
合計ジャッジ時間 | 1,526 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
import math H, W = map(int, input().split()) l = [] for i in range(H): ll = ["0"] + list(input()) + ["0"] l.append(ll) l = [["0" for i in range(W + 2)]] + l + [["0" for i in range(W + 2)]] print(l) best_ans = 10000000000 for i in range(H + 2): for j in range(W + 2): if 0 < i < H + 1 and 0 < j < W + 1: continue if i == j == 0: continue if i == 0 and j == W + 1: continue if j == 0 and i == H + 1: continue if i == H + 1 and j == W + 1: continue ans = 0 for cki in range(H + 2): for ckj in range(W + 2): if l[cki][ckj] == "1": ans += math.sqrt(pow(i - cki,2) + pow(j - ckj,2)) best_ans = min(best_ans,ans) print(best_ans)