結果

問題 No.458 異なる素数の和
ユーザー htkbhtkb
提出日時 2018-06-04 22:13:08
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 764 bytes
コンパイル時間 12,535 ms
コンパイル使用メモリ 441,976 KB
実行使用メモリ 55,452 KB
最終ジャッジ日時 2024-11-20 16:02:03
合計ジャッジ時間 27,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 374 ms
52,316 KB
testcase_01 AC 461 ms
53,100 KB
testcase_02 AC 478 ms
53,284 KB
testcase_03 AC 423 ms
52,648 KB
testcase_04 AC 424 ms
52,732 KB
testcase_05 AC 572 ms
53,324 KB
testcase_06 AC 472 ms
53,160 KB
testcase_07 AC 375 ms
52,444 KB
testcase_08 AC 573 ms
53,580 KB
testcase_09 AC 415 ms
52,716 KB
testcase_10 AC 348 ms
51,220 KB
testcase_11 AC 611 ms
53,416 KB
testcase_12 AC 366 ms
52,652 KB
testcase_13 WA -
testcase_14 AC 364 ms
52,504 KB
testcase_15 AC 365 ms
52,520 KB
testcase_16 AC 423 ms
52,732 KB
testcase_17 AC 363 ms
52,396 KB
testcase_18 AC 365 ms
52,728 KB
testcase_19 AC 363 ms
52,408 KB
testcase_20 AC 365 ms
52,592 KB
testcase_21 AC 362 ms
52,436 KB
testcase_22 AC 366 ms
52,388 KB
testcase_23 AC 371 ms
52,508 KB
testcase_24 AC 367 ms
52,708 KB
testcase_25 AC 357 ms
52,480 KB
testcase_26 AC 361 ms
52,472 KB
testcase_27 AC 461 ms
53,228 KB
testcase_28 AC 601 ms
53,276 KB
testcase_29 AC 412 ms
52,552 KB
testcase_30 AC 442 ms
52,824 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()
    if (N <= 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