반응형

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))

 

반응형

+ Recent posts