Submission #1004091


Source Code Expand

x1,y1=map(int,input().split())
x2,y2=map(int,input().split())
x3,y3=map(int,input().split())
xa=x2-x1
ya=y2-y1
xb=x3-x1
yb=y3-y1

S=abs(xa*yb-xb*ya)/2
a=(xb*xb+yb*yb)**0.5
b=(xa*xa+ya*ya)**0.5
c=((xa-xb)**2+(ya-yb)**2)**0.5

R=max(2*S/(a+b+c+4*S/a),2*S/(a+b+c+4*S/b),2*S/(a+b+c+4*S/c))

print(R)

Submission Info

Submission Time
Task B - Inscribed Bicycle
User koshin
Language Python (3.4.3)
Score 500
Code Size 312 Byte
Status AC
Exec Time 23 ms
Memory 3316 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 22 ms 3064 KB
001.txt AC 23 ms 3316 KB
002.txt AC 23 ms 3064 KB
003.txt AC 22 ms 3064 KB
004.txt AC 22 ms 3064 KB
005.txt AC 22 ms 3064 KB
006.txt AC 23 ms 3064 KB
007.txt AC 23 ms 3064 KB
008.txt AC 22 ms 3064 KB
009.txt AC 22 ms 3064 KB
010.txt AC 22 ms 3064 KB
011.txt AC 22 ms 3064 KB
012.txt AC 22 ms 3064 KB
013.txt AC 22 ms 3064 KB
014.txt AC 22 ms 3064 KB
015.txt AC 23 ms 3064 KB
example0.txt AC 22 ms 3064 KB
example1.txt AC 22 ms 3064 KB