Submission #3288647


Source Code Expand

a,b,c = 3.times.map{gets.split.map(&:to_f)}

def area(a,b,c,d)
  return (a*d-b*c).abs
end

def length(p,q)
  return Math.sqrt((p[0]-q[0])**2+(p[1]-q[1])**2)
end

s = area(b[0]-a[0],b[1]-a[1],c[0]-a[0],c[1]-a[1])
x,y,z = length(a,b),length(b,c),length(c,a)
w = [x,y,z].max
r = s/(x+y+z)

puts w/(2+w/r)

Submission Info

Submission Time
Task B - Inscribed Bicycle
User koikotya
Language Ruby (2.3.3)
Score 500
Code Size 316 Byte
Status AC
Exec Time 7 ms
Memory 3836 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 7 ms 1788 KB
001.txt AC 7 ms 1788 KB
002.txt AC 7 ms 1788 KB
003.txt AC 7 ms 1788 KB
004.txt AC 7 ms 1788 KB
005.txt AC 7 ms 1788 KB
006.txt AC 7 ms 1788 KB
007.txt AC 7 ms 1788 KB
008.txt AC 7 ms 1788 KB
009.txt AC 7 ms 1788 KB
010.txt AC 7 ms 1788 KB
011.txt AC 7 ms 1788 KB
012.txt AC 7 ms 3836 KB
013.txt AC 7 ms 1788 KB
014.txt AC 7 ms 1788 KB
015.txt AC 7 ms 1788 KB
example0.txt AC 7 ms 1788 KB
example1.txt AC 7 ms 1788 KB