From 80e140d13c7f5d93081587dc7b9da5eb3e728415 Mon Sep 17 00:00:00 2001 From: vss121 Date: Sun, 17 Jul 2022 23:00:37 +0900 Subject: [PATCH] =?UTF-8?q?[3=EC=A3=BC=EC=B0=A8]=20:=20=EA=B9=80=EC=98=88?= =?UTF-8?q?=EA=B2=BD=20-=2018247=20=EA=B2=A8=EC=9A=B8=EC=99=95=EA=B5=AD=20?= =?UTF-8?q?=ED=8B=B0=EC=BC=93=20=EC=98=88=EB=A7=A4=20Bronze3=20(CBNU-Nnet#?= =?UTF-8?q?60)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...5 \355\213\260\354\274\223 \354\230\210\353\247\244.py" | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 "\352\271\200\354\230\210\352\262\275/18247 \352\262\250\354\232\270\354\231\225\352\265\255 \355\213\260\354\274\223 \354\230\210\353\247\244.py" diff --git "a/\352\271\200\354\230\210\352\262\275/18247 \352\262\250\354\232\270\354\231\225\352\265\255 \355\213\260\354\274\223 \354\230\210\353\247\244.py" "b/\352\271\200\354\230\210\352\262\275/18247 \352\262\250\354\232\270\354\231\225\352\265\255 \355\213\260\354\274\223 \354\230\210\353\247\244.py" new file mode 100644 index 0000000..f9f8dbd --- /dev/null +++ "b/\352\271\200\354\230\210\352\262\275/18247 \352\262\250\354\232\270\354\231\225\352\265\255 \355\213\260\354\274\223 \354\230\210\353\247\244.py" @@ -0,0 +1,7 @@ +t = int(input()) +for i in range(t): + n, m = map(int, input().split()) + if m<4 or n<12: # L=12행 + print(-1) + else: + print(11*m+4) \ No newline at end of file