본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#314 백준 파이썬 [18247] 겨울왕국 티켓 예매

https://www.acmicpc.net/problem/18247

 

PYTHON CODE

T = int(input())
for _ in range(T):
    N, M = map(int, input().split())
    
    if M < 4 or N < 12: #L4자리가 없는 경우
        print(-1)
    else:
        print(11 * M + 4)