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
- ios
- github
- 정규표현식
- swift
- JSONSerialization
- UIViewController
- Git과 Github차이점
- PushNotification
- GitvsGithub
- 깃
- APNS
- git
- 흐름도
- 순서도
- 애플
- OS
- git이란
- 백준
- 계산기
- 스위프트
- flowchart
- flow chart
- 깃허브
- 플로우 차트
- git사용법
- github란
- Regex
- 플로우차트
- xcode
- 정규식
Archives
- Today
- Total
Diana의 iOS 개발일기
[백준 swift] 1차원 배열 - 1546번, 4344번 본문
1546번
import Foundation
var num = Double(readLine()!)!
var scores = readLine()!.components(separatedBy: " ").map{Double($0)!}
var max = scores.max()!
var modifiedScores = scores.map{($0/max)*100}.reduce(0, {$0 + $1})
print(modifiedScores/num)
4344번
import Foundation
var C = Int(readLine()!)!
for _ in 1...C {
var testCase = (readLine() ?? "").components(separatedBy:" ").map{Int($0)!}
let num = testCase[0]
testCase.removeFirst()
let sum = testCase.reduce(0,{$0 + $1})
let average = sum / num
let count = Float(testCase.filter{$0 > average}.count)
let rate = (Float(count) / Float(testCase.count)) * 100
let result = String(format: "%.3f%%", rate)
print(result)
}
String format 에서 퍼센트기호(%)를 사용하기 위해서는 퍼센트기호를 두 번 써줘야 한다.
'알고리즘 > 백준' 카테고리의 다른 글
[백준 swift] 문자열 - 1157번, 1152번, 5622번, 1316번 (0) | 2021.04.04 |
---|---|
[백준 swift] 함수 - 1065번 (0) | 2021.04.04 |
[백준 swift] while문 - 1110번 (0) | 2021.04.01 |
[백준 swift] for문 - 2739번, 2741번, 10871번 (0) | 2021.03.23 |
[백준 swift] if문 - 1330번, 9498번, 2884번 (0) | 2021.03.22 |