結果

問題 No.45 回転寿司
ユーザー バカらっくバカらっく
提出日時 2019-09-09 18:05:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 339 ms / 5,000 ms
コード長 591 bytes
コンパイル時間 13,050 ms
コンパイル使用メモリ 446,408 KB
実行使用メモリ 52,160 KB
最終ジャッジ日時 2024-06-28 12:56:59
合計ジャッジ時間 25,177 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
52,008 KB
testcase_01 AC 323 ms
52,004 KB
testcase_02 AC 321 ms
52,064 KB
testcase_03 AC 326 ms
51,940 KB
testcase_04 AC 323 ms
52,160 KB
testcase_05 AC 309 ms
51,660 KB
testcase_06 AC 318 ms
51,808 KB
testcase_07 AC 339 ms
51,832 KB
testcase_08 AC 317 ms
51,496 KB
testcase_09 AC 322 ms
51,828 KB
testcase_10 AC 316 ms
51,948 KB
testcase_11 AC 310 ms
51,724 KB
testcase_12 AC 329 ms
51,960 KB
testcase_13 AC 312 ms
51,740 KB
testcase_14 AC 309 ms
51,544 KB
testcase_15 AC 319 ms
51,752 KB
testcase_16 AC 315 ms
51,732 KB
testcase_17 AC 317 ms
51,568 KB
testcase_18 AC 316 ms
51,528 KB
testcase_19 AC 318 ms
51,768 KB
testcase_20 AC 302 ms
51,820 KB
testcase_21 AC 312 ms
51,636 KB
testcase_22 AC 305 ms
51,572 KB
testcase_23 AC 303 ms
51,836 KB
testcase_24 AC 304 ms
51,696 KB
testcase_25 AC 301 ms
51,932 KB
testcase_26 AC 315 ms
51,920 KB
testcase_27 AC 325 ms
51,944 KB
testcase_28 AC 326 ms
51,756 KB
testcase_29 AC 318 ms
51,836 KB
testcase_30 AC 321 ms
51,872 KB
testcase_31 AC 309 ms
51,808 KB
testcase_32 AC 308 ms
51,336 KB
testcase_33 AC 331 ms
51,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used
fun main(arr:Array<String>) {
         ^
Main.kt:2:9: warning: variable 'susiCount' is never used
    val susiCount = readLine()!!.toInt()
        ^
Main.kt:17:38: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int
        return susiList.take(2).max()!!
                                     ^

ソースコード

diff #

fun main(arr:Array<String>) {
    val susiCount = readLine()!!.toInt()
    susiList.addAll(readLine()!!.split(" ").map { it.toInt() })
    susiList.indices.forEach { getAns(it) }
    println(getAns(susiList.lastIndex))
}

val susiList = mutableListOf<Int>()

val dic = mutableMapOf<Int, Int>()

fun getAns(idx:Int):Int {
    if(idx == 0) {
        return susiList[0]
    }
    if(idx == 1) {
        return susiList.take(2).max()!!
    }

    dic[idx]?.let { return it }
    var ans = getAns(idx - 1)
    ans = Math.max(getAns(idx-2) + susiList[idx], ans)
    dic[idx] = ans
    return ans
}
0