목록코딩테스트 (187)
Note
[codeup] 128. 축구의 신 1
a,b = map(int, input().split()) if a%5 == 0: print(int(((90-a)/5)+b)) else: print(int(((90-a)/5)+1+b))
etc/Coding Test
2022. 1. 27. 00:00
[codeup] 127. 터널 통과하기 1
a,b,c = map(int, input().split()) if a > 170 and b > 170 and c > 170: print('PASS') else: print('CRASH')
etc/Coding Test
2022. 1. 26. 00:00
[codeup] 126. 당신의 사주를 봐 드립니다 2
a,b,c = map(int, input().split()) n = int((a+b+c)/100) if n%2 == 0: print('대박') else: print('그럭저럭')
etc/Coding Test
2022. 1. 25. 00:00
[codeup] 125. 당신의 사주를 봐 드립니다 1
a,b,c = map(int,input().split()) if (a-b+c)%10==0: print("대박") else: print("그럭저럭") a,b,c = map(int,input().split()) n = a-b+c n2 = [int(n) for n in str(n)] if n2[-1] == 0: print('대박') else: print('그럭저럭')
etc/Coding Test
2022. 1. 24. 01:59