結果

問題 No.2093 Shio Ramen
ユーザー 箱星箱星
提出日時 2022-10-05 21:29:35
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 1,272 bytes
コンパイル時間 14,737 ms
コンパイル使用メモリ 455,424 KB
実行使用メモリ 59,308 KB
最終ジャッジ日時 2024-06-10 20:38:11
合計ジャッジ時間 24,180 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
54,344 KB
testcase_01 AC 283 ms
54,528 KB
testcase_02 AC 291 ms
54,428 KB
testcase_03 AC 284 ms
54,484 KB
testcase_04 AC 285 ms
54,324 KB
testcase_05 AC 283 ms
54,488 KB
testcase_06 AC 287 ms
54,544 KB
testcase_07 AC 281 ms
54,668 KB
testcase_08 AC 287 ms
54,588 KB
testcase_09 AC 319 ms
55,492 KB
testcase_10 AC 337 ms
57,792 KB
testcase_11 AC 307 ms
54,664 KB
testcase_12 AC 324 ms
55,456 KB
testcase_13 AC 303 ms
55,080 KB
testcase_14 AC 316 ms
55,384 KB
testcase_15 AC 354 ms
57,112 KB
testcase_16 AC 326 ms
55,792 KB
testcase_17 AC 329 ms
55,768 KB
testcase_18 AC 325 ms
58,952 KB
testcase_19 AC 321 ms
57,688 KB
testcase_20 AC 324 ms
56,484 KB
testcase_21 AC 332 ms
56,848 KB
testcase_22 AC 328 ms
56,904 KB
testcase_23 AC 337 ms
59,280 KB
testcase_24 AC 329 ms
59,188 KB
testcase_25 AC 327 ms
59,304 KB
testcase_26 AC 329 ms
59,260 KB
testcase_27 AC 332 ms
59,308 KB
testcase_28 AC 331 ms
59,260 KB
testcase_29 AC 323 ms
59,168 KB
testcase_30 AC 325 ms
59,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val l = nextInt()
    val (s, a) = Array(n) { nextInt() to nextInt() }.unzip().toList().map { it.toTypedArray() }
    val dp = Array(n + 1) { IntArray(l + 1) { 0 } }
    for (i in 0 until n) {
        for (j in 0..l) {
            if (j >= s[i]) {
                dp[i + 1][j] = maxOf(dp[i + 1][j], dp[i][j], dp[i][j - s[i]] + a[i])
            } else {
                dp[i + 1][j] = maxOf(dp[i + 1][j], dp[i][j])
            }
        }
    }
    println(dp[n].maxOrNull())
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0