Skip to content

Commit

Permalink
[3주차] : 김나영 - 18247 겨울왕국 티켓 예매 Bronze3 (CBNU-Nnet#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
kny2383 committed Jul 17, 2022
1 parent da31dcb commit 254a9cd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions 김나영/18247.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
T = int(input()) # 테스트 케이스 개수
for _ in range(T):
N, M = map(int,input().split()) # N은 영화관 자리의 열 개수, M은 영화관 한 열에 속한 좌석 개수
if N < 12 or M < 4: print("-1") # 제한조건
else: print(11 * M + 4) # L4의 좌석번호

0 comments on commit 254a9cd

Please sign in to comment.