結果

問題 No.4 おもりと天秤
ユーザー rutilicusrutilicus
提出日時 2020-08-31 23:17:38
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 407 ms / 5,000 ms
コード長 667 bytes
コンパイル時間 14,075 ms
コンパイル使用メモリ 440,568 KB
実行使用メモリ 72,700 KB
最終ジャッジ日時 2024-11-17 02:47:42
合計ジャッジ時間 23,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
51,556 KB
testcase_01 AC 295 ms
51,460 KB
testcase_02 AC 311 ms
51,760 KB
testcase_03 AC 310 ms
51,756 KB
testcase_04 AC 327 ms
52,076 KB
testcase_05 AC 406 ms
70,028 KB
testcase_06 AC 335 ms
51,416 KB
testcase_07 AC 404 ms
71,636 KB
testcase_08 AC 296 ms
51,552 KB
testcase_09 AC 326 ms
52,372 KB
testcase_10 AC 407 ms
72,700 KB
testcase_11 AC 292 ms
51,416 KB
testcase_12 AC 296 ms
51,460 KB
testcase_13 AC 302 ms
51,556 KB
testcase_14 AC 296 ms
51,632 KB
testcase_15 AC 295 ms
51,664 KB
testcase_16 AC 303 ms
51,600 KB
testcase_17 AC 298 ms
51,512 KB
testcase_18 AC 388 ms
61,072 KB
testcase_19 AC 392 ms
69,012 KB
testcase_20 AC 393 ms
68,760 KB
testcase_21 AC 395 ms
67,996 KB
testcase_22 AC 395 ms
69,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:27:13: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
    builder.appendln(if (dp[n - 1].contains(sum / 2)) "possible" else "impossible")
            ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val n = readInputLine().toInt()

    val wArr = readInputLine().split(" ").map { it.toInt() }

    val sum = wArr.sum()

    if (sum % 2 == 1) {
        println("impossible")
        return
    }

    val dp = Array(n) { mutableSetOf<Int>() }

    dp[0].add(0)
    dp[0].add(wArr[0])

    for (i in 1 until wArr.size) {
        dp[i].addAll(dp[i - 1])
        for (prev in dp[i - 1]) {
            dp[i].add(prev + wArr[i])
        }
    }

    builder.appendln(if (dp[n - 1].contains(sum / 2)) "possible" else "impossible")

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0