분류 전체보기
-
[백준 2439] [Kotlin] 별 찍기 - 2백준 알고리즘 2021. 7. 15. 09:24
import java.util.Scanner fun main() { val sc: Scanner = Scanner(System.`in`) var n = sc.nextLine().toInt() for (x in 1..n) { for (i in n-x downTo 1) { print(" ") } for (j in 1..x) { print("*") } println() } } 메모리 시간 언어 코드 길이 15604 KB 260 ms Kotlin (JVM) 252 B import java.util.Scanner fun main() { val sc: Scanner = Scanner(System.`in`) var n = sc.nextLine().toInt() for (x in 1..n) { for (i in 1....
-
[백준 11022] [Kotlin] A+B - 8백준 알고리즘 2021. 7. 15. 09:20
import java.io.* fun main() { val br = BufferedReader(InputStreamReader(System.`in`)) val bw = BufferedWriter(OutputStreamWriter(System.out)) try { val n = br.readLine().toInt() for (i in 1..n) { val temp: List = br.readLine().split(" ") bw.write("Case #$i: ${temp[0].toInt()} + ${temp[1].toInt()} = ${temp[0].toInt() + temp[1].toInt()}\n") } bw.flush() } catch (e: java.lang.Exception) { e.printSt..
-
[백준 11021] [Kotlin] A+B - 7백준 알고리즘 2021. 7. 15. 09:19
import java.io.* fun main() { val br = BufferedReader(InputStreamReader(System.`in`)) val bw = BufferedWriter(OutputStreamWriter(System.out)) try { val n = br.readLine().toInt() for (i in 1..n) { val temp: List = br.readLine().split(" ") val result = temp[0].toInt() + temp[1].toInt() bw.write("Case #$i: $result\n") } bw.flush() } catch (e: java.lang.Exception) { e.printStackTrace() } } 메모리 시간 언어..
-
[백준 15552] [Kotlin] 빠른 A+B백준 알고리즘 2021. 7. 15. 09:13
import java.io.* fun main() { val br = BufferedReader(InputStreamReader(System.`in`)) val bw = BufferedWriter(OutputStreamWriter(System.out)) try { val n = br.readLine().toInt() for (i in 1..n) { val temp: List = br.readLine().split(" ") val result = temp[0].toInt() + temp[1].toInt() bw.write("$result\n") } bw.flush() } catch (e: java.lang.Exception) { e.printStackTrace() } } 메모리 시간 언어 코드 길이 297..