Submission #3366014


Source Code Expand

ai = lambda: list(map(int, input().split()))

import numpy as np
import math


def calc(A,B,C):
    a = np.linalg.norm(B - C)
    b = np.linalg.norm(C - A)
    c = np.linalg.norm(A - B)
    s = (a + b + c) / 2
    area = (s * (s - a) * (s - b) * (s - c)) ** 0.5
    r = 2 * area / (a + b + c)
    m = max(a,b,c)
    return m/(2+m/r)


a = np.array(ai())
b = np.array(ai())
c = np.array(ai())
print(calc(a,b,c))

Submission Info

Submission Time
Task B - Inscribed Bicycle
User krswrb
Language Python (3.4.3)
Score 500
Code Size 432 Byte
Status AC
Exec Time 151 ms
Memory 12584 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 148 ms 12472 KB
001.txt AC 151 ms 12464 KB
002.txt AC 148 ms 12472 KB
003.txt AC 149 ms 12504 KB
004.txt AC 147 ms 12472 KB
005.txt AC 149 ms 12584 KB
006.txt AC 149 ms 12468 KB
007.txt AC 148 ms 12472 KB
008.txt AC 148 ms 12376 KB
009.txt AC 148 ms 12468 KB
010.txt AC 148 ms 12472 KB
011.txt AC 148 ms 12472 KB
012.txt AC 147 ms 12472 KB
013.txt AC 148 ms 12468 KB
014.txt AC 148 ms 12464 KB
015.txt AC 148 ms 12504 KB
example0.txt AC 149 ms 12472 KB
example1.txt AC 148 ms 12472 KB