-
[백준 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<String> = br.readLine().split(" ") val result = temp[0].toInt() + temp[1].toInt() bw.write("$result\n") } bw.flush() } catch (e: java.lang.Exception) { e.printStackTrace() } }
메모리 시간 언어 코드 길이 297064 KB 928 ms Kotlin (JVM) 479 B
입출력
BufferedReader
BufferedWriter'백준 알고리즘' 카테고리의 다른 글
[백준 2742] [Kotlin] 기찍 N (0) 2021.07.15 [백준 2741] [Kotlin] N 찍기 (0) 2021.07.15 [백준 8393] [Kotlin] 합 (0) 2021.07.15 [백준 10950] [Kotlin] A+B - 3 (0) 2021.07.15 [백준 2739] [Kotlin] 구구단 (0) 2021.07.15