feldblume5263 / TIL

Today I Learned
0 stars 0 forks source link

(220816)[개인 공부] 백준 2.6 - 2.7 #1

Closed feldblume5263 closed 2 years ago

feldblume5263 commented 2 years ago

재미보다는 가독성과 시간 복잡도를 신경쓰면서

feldblume5263 commented 2 years ago

2525

let i = readLine()!.split(separator: " ").map{Int($0)!}
let j = Int(readLine()!)!
print((i[0] + (i[1] + j) / 60) % 24, (i[1] + j) % 60)

2480

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) }
스크린샷 2022-08-16 오후 7 56 28