728x90
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
x1, y1 = map(int, input().split(' '))
x2, y2 = map(int, input().split(' '))
x3, y3 = map(int, input().split(' '))
S = (x1*y2 + x2*y3 + x3*y1) - (x1*y3 + x3*y2 + x2*y1)
if S < 0:
S = -S
print("%.2f" %(S/2))
# -*- coding: utf-8 -*-
# UTF-8 encoding when using korean
a_size, b_size = map(int, input().split(" "))
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.extend(b)
a.sort()
for i in range (len(a)):
print(a[i], end = ' ')
728x90
'Algorithm > goorm' 카테고리의 다른 글
goorm 최단거리, 좀비런, 재정 위기 (0) | 2020.09.01 |
---|---|
goorm 완전 제곱수, 앵무새 꼬꼬, 은행 예금 이자 구하기 (0) | 2020.08.30 |
goorm 의좋은 형제, Factorial(계승), 홀수의 합 (0) | 2020.08.28 |
goorm 유클리드 호제법, Substring, 특정 구간의 합 (0) | 2020.08.27 |
goorm 완전수, 부분문자열, 대소문자 바꾸어 출력하기 (0) | 2020.08.26 |