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
- DP
- OS
- Java8
- BFS
- lambda
- back-end
- 백준
- 알고리즘
- 프로젝트
- 운영체제
- programmers
- 스프링
- algorithm
- 코틀린
- java
- Brute-force
- DFS
- Spring
- baekjoon
- kotlin
- 그래프
- 프로그래머스
- LEVEL2
- TDD
- 자바
- 네트워크
- 백트래킹
- 자료구조
- backtracking
- 모던자바
Archives
- Today
- Total
요깨비's LAB
[백준, Back-Tracking, Kotlin] P.4344 평균은 넘겠지 본문
import java.util.*
var C:Int = 0
fun main() {
val scr = Scanner(System.`in`)
C = scr.nextInt()
val results = StringBuffer()
for(i in 0 until C) {
val N = scr.nextInt()
val scores = mutableListOf<Int>()
var total = 0
for(j in 0 until N) {
val score = scr.nextInt()
total += score
scores.add(score)
}
val avg = total/N
var count = 0
for(j in 0 until N) {
if(scores[j] > avg)
count++
}
val result = String.format("%.3f", count.toDouble()/N * 100)
results.append("$result%\n")
}
print(results.toString())
}
'알고리즘(Kotlin) > Back-Tracking' 카테고리의 다른 글
[백준, BackTracking, Kotlin] P.16198 에너지 모으기 (0) | 2021.04.08 |
---|---|
[백준, BackTracking, Kotlin] P.15658 연산자 끼워넣기2 (0) | 2021.04.06 |
[백준, BackTracking, Kotlin] P.2529 부등호 (0) | 2021.04.06 |
[백준, BackTracking, Kotlin] P.2580 스도쿠 (0) | 2021.03.29 |
[백준, BackTracking, Kotlin] P.15650 N과 M (0) | 2021.03.24 |
Comments