結果
問題 | No.168 ものさし |
ユーザー | chocorusk |
提出日時 | 2020-09-14 09:45:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 63 ms / 2,000 ms |
コード長 | 670 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 82,400 KB |
実行使用メモリ | 67,396 KB |
最終ジャッジ日時 | 2024-06-22 00:39:40 |
合計ジャッジ時間 | 2,202 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
65,732 KB |
testcase_01 | AC | 33 ms
52,804 KB |
testcase_02 | AC | 32 ms
52,944 KB |
testcase_03 | AC | 33 ms
53,280 KB |
testcase_04 | AC | 30 ms
53,244 KB |
testcase_05 | AC | 31 ms
52,996 KB |
testcase_06 | AC | 32 ms
52,280 KB |
testcase_07 | AC | 32 ms
53,012 KB |
testcase_08 | AC | 31 ms
54,468 KB |
testcase_09 | AC | 43 ms
61,104 KB |
testcase_10 | AC | 46 ms
62,320 KB |
testcase_11 | AC | 53 ms
66,052 KB |
testcase_12 | AC | 53 ms
66,852 KB |
testcase_13 | AC | 56 ms
66,116 KB |
testcase_14 | AC | 43 ms
62,124 KB |
testcase_15 | AC | 32 ms
52,312 KB |
testcase_16 | AC | 38 ms
61,728 KB |
testcase_17 | AC | 42 ms
62,380 KB |
testcase_18 | AC | 41 ms
64,092 KB |
testcase_19 | AC | 53 ms
67,396 KB |
testcase_20 | AC | 46 ms
64,584 KB |
testcase_21 | AC | 63 ms
65,860 KB |
testcase_22 | AC | 48 ms
65,188 KB |
ソースコード
import sys read=sys.stdin.buffer.read readline=sys.stdin.buffer.readline readlines=sys.stdin.buffer.readlines n=int(readline()) xy=list(map(int, read().split())) x=xy[::2] y=xy[1::2] INF=3*10**18 d=[INF]*n d[0]=0 dq=[INF]*n dq[0]=0 for _ in range(n): i=dq.index(min(dq)) d1=dq[i] if i==n-1 or d1==INF: break x1, y1=x[i], y[i] dq[i]=INF for j, (x2, y2) in enumerate(zip(x, y)): d2=max(d1, (x1-x2)*(x1-x2)+(y1-y2)*(y1-y2)) if d[j]>d2: d[j]=d2 if dq[j]>d2: dq[j]=d2 mn=d[n-1] l, r=0, 2*10**8 while r-l>1: m=(l+r)//2 if 100*m*m>=mn: r=m else: l=m print(10*r)