結果

問題 No.4 おもりと天秤
ユーザー バカらっくバカらっく
提出日時 2019-08-29 08:01:53
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 624 ms / 5,000 ms
コード長 899 bytes
コンパイル時間 12,602 ms
コンパイル使用メモリ 428,540 KB
実行使用メモリ 88,096 KB
最終ジャッジ日時 2024-11-20 19:26:58
合計ジャッジ時間 23,403 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
56,916 KB
testcase_01 AC 319 ms
56,768 KB
testcase_02 AC 331 ms
57,036 KB
testcase_03 AC 324 ms
57,140 KB
testcase_04 AC 338 ms
57,168 KB
testcase_05 AC 590 ms
85,940 KB
testcase_06 AC 319 ms
56,952 KB
testcase_07 AC 600 ms
88,096 KB
testcase_08 AC 418 ms
64,180 KB
testcase_09 AC 429 ms
65,340 KB
testcase_10 AC 624 ms
87,976 KB
testcase_11 AC 323 ms
57,048 KB
testcase_12 AC 320 ms
56,796 KB
testcase_13 AC 314 ms
56,868 KB
testcase_14 AC 319 ms
56,908 KB
testcase_15 AC 321 ms
56,996 KB
testcase_16 AC 324 ms
57,016 KB
testcase_17 AC 321 ms
56,920 KB
testcase_18 AC 507 ms
76,580 KB
testcase_19 AC 584 ms
86,224 KB
testcase_20 AC 574 ms
86,140 KB
testcase_21 AC 569 ms
84,032 KB
testcase_22 AC 578 ms
83,992 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^
Main.kt:2:9: warning: variable 'weightCount' is never used
    val weightCount = readLine()!!.toInt()
        ^
Main.kt:4:30: warning: 'sumBy((T) -> Int): Int' is deprecated. Use sumOf instead.
    totalWeight = weightList.sumBy { it }
                             ^

ソースコード

diff #

fun main(args: Array<String>){
    val weightCount = readLine()!!.toInt()
    weightList = readLine()!!.split(" ").map { it.toInt() }
    totalWeight = weightList.sumBy { it }
    val ans = if(getAns(0, 0)) "possible" else "impossible"
    println(ans)
}

var weightList = listOf<Int>()
var totalWeight = 0
val dic = mutableMapOf<Int, MutableMap<Int, Boolean>>()

fun getAns(pos:Int, subTotal:Int):Boolean {
    if(subTotal * 2 == totalWeight) {
        return true
    }
    if(subTotal * 2 > totalWeight) {
        return false
    }
    if(pos > weightList.lastIndex) {
        return false
    }
    if(!dic.containsKey(pos)) {
        dic[pos] = mutableMapOf()
    }
    dic[pos]!![subTotal]?.let {
        return it
    }

    val ret1 = getAns(pos + 1, subTotal)
    val ret2 = getAns(pos + 1, subTotal + weightList[pos])

    dic[pos]!![subTotal] = (ret1 || ret2)
    return (ret1 || ret2)
}
0