[파이썬] 백준 - 10단계 기하: 직사각형과 삼각형
[파이썬] 백준 - 10단계 기하: 직사각형과 삼각형 직사각형 (27323) A = int(input()) B = int(input()) print(A*B) 직사각형에서 탈출 (1085) x,y,w,h = map(int,input().split()) temp = [x,y,w-x,h-y] print(min(temp)) 네 번째 점 (3009) temp_x,temp_y = set({}),set({}) given,point = [],[] for i in range(3): x,y = map(int,input().split()) temp_x.add(x) temp_y.add(y) given.append([x,y]) temp_x = list(temp_x) temp_y = list(temp_y) x_min,x_max,..
2023. 4. 8.