結果

問題 No.115 遠足のおやつ
ユーザー バカらっくバカらっく
提出日時 2019-10-01 08:17:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 659 ms / 5,000 ms
コード長 1,215 bytes
コンパイル時間 14,352 ms
コンパイル使用メモリ 440,112 KB
実行使用メモリ 101,756 KB
最終ジャッジ日時 2024-06-11 00:01:56
合計ジャッジ時間 28,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
56,960 KB
testcase_01 AC 274 ms
52,720 KB
testcase_02 AC 294 ms
52,944 KB
testcase_03 AC 264 ms
51,912 KB
testcase_04 AC 402 ms
66,472 KB
testcase_05 AC 281 ms
51,672 KB
testcase_06 AC 276 ms
51,900 KB
testcase_07 AC 280 ms
52,584 KB
testcase_08 AC 270 ms
52,012 KB
testcase_09 AC 286 ms
51,916 KB
testcase_10 AC 271 ms
51,716 KB
testcase_11 AC 273 ms
51,680 KB
testcase_12 AC 279 ms
51,876 KB
testcase_13 AC 280 ms
52,040 KB
testcase_14 AC 289 ms
52,768 KB
testcase_15 AC 390 ms
63,240 KB
testcase_16 AC 380 ms
63,188 KB
testcase_17 AC 271 ms
51,904 KB
testcase_18 AC 287 ms
52,404 KB
testcase_19 AC 271 ms
51,984 KB
testcase_20 AC 269 ms
51,856 KB
testcase_21 AC 271 ms
51,964 KB
testcase_22 AC 381 ms
64,624 KB
testcase_23 AC 296 ms
53,264 KB
testcase_24 AC 407 ms
64,764 KB
testcase_25 AC 267 ms
51,816 KB
testcase_26 AC 277 ms
52,484 KB
testcase_27 AC 293 ms
53,184 KB
testcase_28 AC 301 ms
53,340 KB
testcase_29 AC 291 ms
53,316 KB
testcase_30 AC 408 ms
64,664 KB
testcase_31 AC 375 ms
60,400 KB
testcase_32 AC 388 ms
64,188 KB
testcase_33 AC 282 ms
51,744 KB
testcase_34 AC 399 ms
67,536 KB
testcase_35 AC 406 ms
61,768 KB
testcase_36 AC 416 ms
65,828 KB
testcase_37 AC 382 ms
63,924 KB
testcase_38 AC 659 ms
101,756 KB
testcase_39 AC 623 ms
101,520 KB
testcase_40 AC 276 ms
57,148 KB
testcase_41 AC 272 ms
57,144 KB
testcase_42 AC 270 ms
57,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val(n,d,k) = readLine()!!.split(" ").map { it.toInt() }
    itemCount = n
    val ans = getAns(1, d, k)
    println(ans.joinToString(" "))
}

var itemCount = 0
val dic = mutableMapOf<Int, MutableMap<Int, MutableMap<Int, List<Int>>>>()

fun getAns(index:Int, remain:Int, remainCount:Int):MutableList<Int> {
    if(remain == 0) {
        if(remainCount == 0) {
            return mutableListOf()
        } else {
            return mutableListOf(-1)
        }
    }
    if(remainCount <= 0) {
        return mutableListOf(-1)
    }
    if(index > itemCount) {
        return mutableListOf(-1)
    }
    if(remain < 0) {
        return mutableListOf(-1)
    }

    dic[index]?: run { dic[index] = mutableMapOf() }
    dic[index]!![remain]?: run { dic[index]!![remain] = mutableMapOf() }
    dic[index]!![remain]!![remainCount]?.let { return it.toMutableList() }

    var ret = getAns(index + 1, remain - index, remainCount - 1)
    if(ret.isEmpty() || ret[0] != -1) {
        ret = ret.map { it }.toMutableList()
        ret.add(0, index)
    } else {
        ret = getAns(index + 1, remain, remainCount)
    }
    dic[index]!![remain]!![remainCount] = ret.map { it }
    return ret
}
0