Submission #3586618


Source Code Expand

x1,y1=map(int,input().split())
x2,y2=map(int,input().split())
x3,y3=map(int,input().split())

from math import sqrt

d1=sqrt((x2-x3)**2+(y2-y3)**2)
d2=sqrt((x1-x3)**2+(y1-y3)**2)
d3=sqrt((x1-x2)**2+(y1-y2)**2)

l=max(d1,max(d2,d3))

def cos(x,y,z):
    return (y**2+z**2-x**2)/(2*y*z)

c1=cos(d1,d2,d3)
c2=cos(d2,d1,d3)
c3=cos(d3,d2,d1)

c1=sqrt((1+c1)/2)
c2=sqrt((1+c2)/2)
c3=sqrt((1+c3)/2)

ct1=sqrt(1/(1/(c1**2)-1))
ct2=sqrt(1/(1/(c2**2)-1))
ct3=sqrt(1/(1/(c3**2)-1))

r=max(d1/(2+ct2+ct3),max(d2/(2+ct1+ct3),d3/(2+ct2+ct1)))

print(r)

Submission Info

Submission Time
Task B - Inscribed Bicycle
User penpenpen
Language Python (3.4.3)
Score 500
Code Size 569 Byte
Status AC
Exec Time 18 ms
Memory 3064 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 2
AC × 18
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 18 ms 3064 KB
001.txt AC 18 ms 3064 KB
002.txt AC 18 ms 3064 KB
003.txt AC 18 ms 3064 KB
004.txt AC 18 ms 3064 KB
005.txt AC 18 ms 3064 KB
006.txt AC 18 ms 3064 KB
007.txt AC 18 ms 3064 KB
008.txt AC 18 ms 3064 KB
009.txt AC 18 ms 3064 KB
010.txt AC 18 ms 3064 KB
011.txt AC 18 ms 3064 KB
012.txt AC 18 ms 3064 KB
013.txt AC 18 ms 3064 KB
014.txt AC 18 ms 3064 KB
015.txt AC 18 ms 3064 KB
example0.txt AC 18 ms 3064 KB
example1.txt AC 18 ms 3064 KB