본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]20839번 Betygsättning

by 현장 2021. 6. 25.

-코드

x, y, z = map(int, input().split())
x2, y2, z2 = map(int, input().split())

if x <= x2 and y <= y2 and z <= z2:
    print("A")
elif x / 2 <= x2 and y <= y2 and z <= z2:
    print("B")
elif y <= y2 and z <= z2:
    print("C")
elif y / 2 <= y2 and z / 2 <= z2:
    print("D")
else:
    print("E")

 

기준이 1일 경우를 생각을 안하고 //을 이용해여 수식을 만들어서 몇 번 틀렸습니다.