-
[백준 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<String> = 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.printStackTrace() } }
메모리 시간 언어 코드 길이 14180 KB 116 ms Kotlin (JVM) 503 B
입출력
BufferedReader
BufferedWriter'백준 알고리즘' 카테고리의 다른 글
[백준 2439] [Kotlin] 별 찍기 - 2 (0) 2021.07.15 [백준 2438] [Kotlin] 별 찍기 - 1 (0) 2021.07.15 [백준 11021] [Kotlin] A+B - 7 (0) 2021.07.15 [백준 2742] [Kotlin] 기찍 N (0) 2021.07.15 [백준 2741] [Kotlin] N 찍기 (0) 2021.07.15