Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Regex
- UIViewController
- JSONSerialization
- 깃
- 플로우차트
- 정규식
- git
- github
- GitvsGithub
- flow chart
- ios
- 스위프트
- 순서도
- flowchart
- 계산기
- github란
- OS
- 깃허브
- swift
- Git과 Github차이점
- 흐름도
- 플로우 차트
- APNS
- git사용법
- git이란
- xcode
- PushNotification
- 정규표현식
- 백준
- 애플
Archives
- Today
- Total
Diana의 iOS 개발일기
[백준 swift] 기본수학 1 - 1712번, 2292번, 2869번, 10250번 본문
1712번 - 손익 분기점
import Foundation
let num = readLine()!.components(separatedBy: " ").map{Int($0)!}
if(num[1]>=num[2]){
print(-1)
}else{
print(num[0]/(num[2] - num[1])+1)
}
2292번 - 벌집
import Foundation
var num = Int(readLine()!)!
var plus = 0
var result = true
while(result){
let calculate = 3*plus*(plus+1)+1
if(num <= calculate){
print(plus+1)
result = false
}
plus += 1
}
2869번 - 달팽이는 올라가고 싶다
import Foundation
let num = readLine()!.components(separatedBy: " ").map{Double($0)!}
let up = num[2] - num[1]
let down = num[0] - num[1]
let calculate = up / down
var result = Int(ceil(calculate))
print(result)
10250번 - ACM호텔
import Foundation
let num = Int(readLine()!)!
for _ in 1...num{
let testCase = readLine()!.components(separatedBy: " ").map{Double($0)!}
let share = ceil(testCase[2] / testCase[0])
var remainder = Int(testCase[2]) % Int(testCase[0])
if remainder == 0 {
remainder = Int(testCase[0])
}
let result = remainder * 100 + Int(share)
print(result)
}
'알고리즘 > 백준' 카테고리의 다른 글
[백준 swift] 재귀 - 10872번, 10870번 (0) | 2021.04.13 |
---|---|
[백준 swift] 문자열 - 1157번, 1152번, 5622번, 1316번 (0) | 2021.04.04 |
[백준 swift] 함수 - 1065번 (0) | 2021.04.04 |
[백준 swift] 1차원 배열 - 1546번, 4344번 (0) | 2021.04.01 |
[백준 swift] while문 - 1110번 (0) | 2021.04.01 |