반응형
1. 1330 두 수 비교하기
A, B = map(int, input().split())
if A > B:
print('>')
elif A < B :
print('<')
else:
print('==')
2. 9498 시험 성적
test = int(input())
if test >= 90:
print('A')
elif test >= 80:
print('B')
elif test >= 70:
print('C')
elif test >= 60:
print('D')
else:
print('F')
elif 는 순서의 영향을 받기 때문에 순서에 주의해야한다
3. 2753 윤년
year = int(input())
if year % 400 == 0:
print(1)
elif year % 4 == 0:
if year % 100 != 0:
print(1)
else:
print(0)
else:
print(0)
4. 14681 사분면 고르기
x = int(input())
y = int(input())
if x > 0 and y > 0:
print(1)
elif x < 0 and y > 0:
print(2)
elif x < 0 and y < 0:
print(3)
else:
print(4)
5. 2884 알람 시계
h, m = map(int,input().split())
if m < 45 :
m = m + (60 - 45)
if h != 0:
h -= 1
else:
h = 23
else:
m = m - 45
print('{} {}'.format(h, m))
반응형
'study > 백준' 카테고리의 다른 글
[백준] 1110번 더하기 사이클 : python (0) | 2021.08.27 |
---|---|
[백준 / python] 10951번 A + B - 4 (0) | 2021.08.27 |
[백준/python] 10952 A + B - 5 (0) | 2021.08.27 |
[백준/python] 단계별로 풀어보기 - for문 (0) | 2021.08.26 |
[백준/python] 단계별로 풀어보기 - 입출력과 사칙연산 (1) | 2021.08.25 |