Home 백준 - 1978 소수 찾기
Post
Cancel

백준 - 1978 소수 찾기

문제

1978 소수 찾기

screencapture

kotlin code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
fun main() {
    q1978()
}

fun q1978() {
    readln()
    val inputs = readln().split(" ").map { it.toInt() }

    println(inputs.count { isPrimality(it) })
}

private fun isPrimality(n: Int): Boolean {
    if(n < 2) return false

    for(i in 2 until n) {
        if(n % i == 0) {
            return false
        }
    }
    return true
}
This post is licensed under CC BY 4.0 by the author.

백준 - 11401 이항 계수 3 풀이

백준 - 11866 오세푸스 문제 0