티스토리 뷰
# 1330 두수 비교하기
input_data = input().split(' ')
A = int(input_data[0])
B = int(input_data[1])
r = A-B
if r >= 0 :
if r == 0:
print('==')
else:
print('>')
else:
print('<')
# 9498 시험 성적
x = int(input())
if (x <= 100) and (x >= 90) :
print('A')
elif (x <= 89) and (x >= 80):
print('B')
elif (x <= 79) and (x >= 70):
print('C')
elif (x <= 69) and (x >= 60):
print('D')
else:
print('F')
# 2753 윤년
year = int(input())
# 윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때 이다.
if (year % 4 == 0) and (year % 100 != 0 or year % 400 == 0):
print(1)
else :
print(0)
# 2884 알람시계
input_data = input().split(' ')
H = int(input_data[0])
M = int(input_data[1])
M -= 45
if M < 0 :
M += 60
H -= 1
if H < 0:
H = 23
print('{} {}'.format(H,M))
# 10817 세 수
input_data = [int(i) for i in input().split(' ')]
input_data.sort()
print(input_data[1])
'프로그래밍 > BOJ' 카테고리의 다른 글
백준: #단계별로 풀어보기, 함수 (0) | 2020.01.11 |
---|---|
백준: #단계별로 풀어보기, 1차원 배열 (2) (0) | 2020.01.10 |
백준: #단계별로 풀어보기, 1차원 배열 (1) (0) | 2020.01.10 |
#단계별로 풀어보기 :while (0) | 2020.01.06 |
# 단계별로 풀어보기 :for (0) | 2020.01.05 |
댓글