백준 19944번: 뉴비의 기준은 뭘까?

danbibibi·2021년 10월 13일
0

문제

문제 바로가기> 백준 19944번: 뉴비의 기준은 뭘까?

풀이

조건문을 사용하여 간단하게 풀 수 있다.

def solution():
    import sys
    input = sys.stdin.readline
    N, M = map(int, input().split())
    is_new, is_old = False, False

    if M<=2: is_new = True
    if M<=N and not is_old: is_old = True

    if is_new: print("NEWBIE!")
    elif is_old: print("OLDBIE!")
    else: print("TLE!")
solution()
profile
블로그 이전) https://danbibibi.tistory.com

0개의 댓글