結果

問題 No.106 素数が嫌い!2
ユーザー firiexpfiriexp
提出日時 2019-03-03 22:32:39
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 372 ms / 5,000 ms
コード長 275 bytes
コンパイル時間 13,586 ms
コンパイル使用メモリ 432,052 KB
実行使用メモリ 65,628 KB
最終ジャッジ日時 2024-11-20 17:34:44
合計ジャッジ時間 18,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 351 ms
61,440 KB
testcase_01 AC 318 ms
56,936 KB
testcase_02 AC 317 ms
56,892 KB
testcase_03 AC 318 ms
56,960 KB
testcase_04 AC 351 ms
61,416 KB
testcase_05 AC 370 ms
65,412 KB
testcase_06 AC 369 ms
65,528 KB
testcase_07 AC 372 ms
65,404 KB
testcase_08 AC 346 ms
57,340 KB
testcase_09 AC 343 ms
57,284 KB
testcase_10 AC 368 ms
65,396 KB
testcase_11 AC 353 ms
61,532 KB
testcase_12 AC 371 ms
65,628 KB
testcase_13 AC 316 ms
56,888 KB
testcase_14 AC 316 ms
56,880 KB
testcase_15 AC 311 ms
56,956 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 = IntArray(n+1, {0})
    for (i in 2..n) {
        if (v[i] > 0) continue
        for (j in i..n step i){
            v[j]++
        }
    }
    println(v.count {it >= k})
}
0