Closed feldblume5263 closed 2 years ago
let i = readLine()!.split(separator: " ").map{Int($0)!}
let j = Int(readLine()!)!
print((i[0] + (i[1] + j) / 60) % 24, (i[1] + j) % 60)
var i = readLine()!.split(separator: " ").map{Int($0)!}.sorted()
if i[1] == i[0] && i[1] == i[2] { print(10000 + i[0] * 1000) }
else if i[1] == i[0] || i[1] == i[2] { print(1000 + i[1] * 100) }
else { print(i[2] * 100) }
재미보다는 가독성과 시간 복잡도를 신경쓰면서