본문 바로가기
python-algorithm

[백준] 18247

by 무적김두칠 2021. 1. 5.

1
2
3
4
5
import sys
for _ in range(int(sys.stdin.readline())):
    n, m = map(int, sys.stdin.readline().split())
    if n<=11 or m<4 : print(-1)
    else : print(11*m+4)
cs

L이 알파벳 순서로 12번째 이므로  n의 기준을 11(python 은 0부터 시작)로 잡습니다.

반응형

'python-algorithm' 카테고리의 다른 글

[백준] 20053  (0) 2021.01.05
[백준] 19572  (0) 2021.01.05
[백준] 17945  (0) 2021.01.05
[백준] 17618  (0) 2021.01.05
[백준] 17450  (0) 2021.01.05

댓글