結果

問題 No.106 素数が嫌い!2
ユーザー firiexpfiriexp
提出日時 2019-03-03 22:21:45
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 365 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 10,413 ms
コンパイル使用メモリ 440,176 KB
実行使用メモリ 92,296 KB
最終ジャッジ日時 2024-11-20 17:31:11
合計ジャッジ時間 16,543 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
75,576 KB
testcase_01 AC 276 ms
56,976 KB
testcase_02 AC 272 ms
56,892 KB
testcase_03 AC 272 ms
56,868 KB
testcase_04 AC 332 ms
75,636 KB
testcase_05 AC 355 ms
67,536 KB
testcase_06 AC 363 ms
65,324 KB
testcase_07 AC 339 ms
65,376 KB
testcase_08 AC 307 ms
59,264 KB
testcase_09 AC 309 ms
57,232 KB
testcase_10 AC 339 ms
65,452 KB
testcase_11 AC 323 ms
61,348 KB
testcase_12 AC 365 ms
92,296 KB
testcase_13 AC 271 ms
56,872 KB
testcase_14 AC 271 ms
57,024 KB
testcase_15 AC 285 ms
56,900 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (n, k) = readLine()!!.split(" ").map(String::toInt)
    val v = Array<Int>(n+1, {0})
    for (i in 2..n) {
        if (v[i] > 0) continue
        for (j in i..n step i){
            v[j]++
        }
    }
    println(v.filter{it >= k}.size)
}
0