http://codeup.kr/problem.php?id=1164
Codeup 1164 - 터널 통과하기 1
xxxxxxxxxx
height_1, height_2, height_3 = input().split()
height_1 = int(height_1)
height_2 = int(height_2)
height_3 = int(height_3)
if(height_1 <= 170):
print('CRASH')
elif(height_2 <= 170):
print('CRASH')
elif(height_3 <= 170):
print('CRASH')
else:
print('PASS')
'알고리즘 문제 풀기 > Codeup' 카테고리의 다른 글
Codeup 1166 - 윤년 판별 (0) | 2018.12.23 |
---|---|
Codeup 1165 - 축구의 신 1 (0) | 2018.12.22 |
Codeup 1163 - 당신의 사주를 봐 드립니다 2 (0) | 2018.12.21 |
Codeup 1162 - 당신의 사주를 봐 드립니다 1 (0) | 2018.12.21 |
Codeup 1161 - 홀수와 짝수 그리고 더하기 (0) | 2018.12.20 |