結果
問題 | No.707 書道 |
ユーザー | 💕💖💞 |
提出日時 | 2018-08-03 00:44:07 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 811 ms / 2,000 ms |
コード長 | 956 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 44,068 KB |
最終ジャッジ日時 | 2024-09-19 17:17:21 |
合計ジャッジ時間 | 6,368 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 507 ms
43,660 KB |
testcase_01 | AC | 508 ms
44,068 KB |
testcase_02 | AC | 560 ms
43,684 KB |
testcase_03 | AC | 507 ms
44,064 KB |
testcase_04 | AC | 507 ms
43,916 KB |
testcase_05 | AC | 651 ms
43,784 KB |
testcase_06 | AC | 727 ms
43,936 KB |
testcase_07 | AC | 811 ms
43,912 KB |
testcase_08 | AC | 507 ms
43,808 KB |
ソースコード
import numpy as np import math (height, width) = map(int, input().split()) b = np.zeros((height+2, width+2)) for h in range(height): for w, ch in enumerate(input()): if ch == '1': b[h+1,w+1] = 1.0 key_l2 = {} for ww in [0, width+1]: for h in range(1, height+1): w = ww key = (h,w) for h2 in range(1, height+1): for w2 in range(1, width+1): if b[h2, w2] != 1.0: continue if key_l2.get(key) is None: key_l2[key] = 0.0 key_l2[key] += math.sqrt( (h - h2)**2 + (w - w2)**2 ) for hh in [0, height+1]: for w in range(1, width+1): h = hh key = (h,w) for h2 in range(1, height+1): for w2 in range(1, width+1): if b[h2, w2] != 1.0: continue if key_l2.get(key) is None: key_l2[key] = 0.0 key_l2[key] += math.sqrt( (h - h2)**2 + (w - w2)**2 ) if len(key_l2) > 0: print(min([f for key, f in key_l2.items()])) else: print(0)