結果

問題 No.458 異なる素数の和
ユーザー htkbhtkb
提出日時 2018-06-04 22:18:46
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 607 ms / 2,000 ms
コード長 820 bytes
コンパイル時間 12,675 ms
コンパイル使用メモリ 447,248 KB
実行使用メモリ 58,092 KB
最終ジャッジ日時 2024-11-20 16:02:45
合計ジャッジ時間 27,195 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
57,900 KB
testcase_01 AC 459 ms
57,800 KB
testcase_02 AC 474 ms
57,832 KB
testcase_03 AC 417 ms
58,008 KB
testcase_04 AC 419 ms
57,912 KB
testcase_05 AC 561 ms
57,844 KB
testcase_06 AC 474 ms
57,840 KB
testcase_07 AC 375 ms
58,092 KB
testcase_08 AC 568 ms
57,876 KB
testcase_09 AC 414 ms
57,952 KB
testcase_10 AC 344 ms
55,268 KB
testcase_11 AC 607 ms
57,916 KB
testcase_12 AC 363 ms
57,760 KB
testcase_13 AC 343 ms
55,328 KB
testcase_14 AC 359 ms
57,852 KB
testcase_15 AC 361 ms
57,796 KB
testcase_16 AC 414 ms
57,848 KB
testcase_17 AC 358 ms
57,716 KB
testcase_18 AC 355 ms
57,816 KB
testcase_19 AC 363 ms
57,788 KB
testcase_20 AC 360 ms
57,720 KB
testcase_21 AC 361 ms
57,800 KB
testcase_22 AC 362 ms
57,580 KB
testcase_23 AC 358 ms
57,804 KB
testcase_24 AC 360 ms
57,828 KB
testcase_25 AC 361 ms
57,804 KB
testcase_26 AC 362 ms
57,820 KB
testcase_27 AC 469 ms
57,820 KB
testcase_28 AC 606 ms
58,024 KB
testcase_29 AC 409 ms
57,800 KB
testcase_30 AC 446 ms
57,860 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.util.*

fun main(args: Array<String>) {
    val sc = Scanner(System.`in`)
    val N = sc.nextInt()
    when (N) {
        1 -> { println(-1); return }
        2, 3 -> { println(1); return }
    }
    val primes = mutableListOf<Int>(2, 3)
    for (i in 5 until N step 6) primes.add(i)
    for (i in 7 until N step 6) primes.add(i)
    for (i in 5 until N step 6) {
        if (primes.contains(i)) {
            for (j in i*3 until N step i*2) primes.remove(j)
        }
        if (primes.contains(i+2)) {
            for (j in i*3+6 until N step i*2+4) primes.remove(j)
        }
    }

    val dp = Array(N+1, {0})
    for (n in primes) {
        for (i in N-n downTo 0) if (dp[i] > 0) dp[i+n] = Math.max(dp[i+n], dp[i]+1)
        dp[n] = Math.max(dp[n], 1)
    }
    println(if (dp[N] > 0) dp[N] else -1)
}
0