結果

問題 No.45 回転寿司
ユーザー komkomhkomkomh
提出日時 2019-04-04 17:59:13
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 355 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 12,383 ms
コンパイル使用メモリ 436,572 KB
実行使用メモリ 55,516 KB
最終ジャッジ日時 2024-11-20 17:44:37
合計ジャッジ時間 23,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 314 ms
55,172 KB
testcase_01 AC 317 ms
55,244 KB
testcase_02 AC 325 ms
55,104 KB
testcase_03 AC 338 ms
55,284 KB
testcase_04 AC 332 ms
55,256 KB
testcase_05 AC 328 ms
55,256 KB
testcase_06 AC 328 ms
55,304 KB
testcase_07 AC 336 ms
55,492 KB
testcase_08 AC 331 ms
55,024 KB
testcase_09 AC 332 ms
55,408 KB
testcase_10 AC 336 ms
55,112 KB
testcase_11 AC 327 ms
55,156 KB
testcase_12 AC 345 ms
55,116 KB
testcase_13 AC 330 ms
55,408 KB
testcase_14 AC 322 ms
55,408 KB
testcase_15 AC 334 ms
55,052 KB
testcase_16 AC 355 ms
55,028 KB
testcase_17 AC 342 ms
55,392 KB
testcase_18 AC 330 ms
55,088 KB
testcase_19 AC 349 ms
55,096 KB
testcase_20 AC 330 ms
55,324 KB
testcase_21 AC 324 ms
55,080 KB
testcase_22 AC 322 ms
55,164 KB
testcase_23 AC 320 ms
55,216 KB
testcase_24 AC 317 ms
54,908 KB
testcase_25 AC 320 ms
54,904 KB
testcase_26 AC 342 ms
55,280 KB
testcase_27 AC 335 ms
55,516 KB
testcase_28 AC 337 ms
55,296 KB
testcase_29 AC 330 ms
55,172 KB
testcase_30 AC 328 ms
55,080 KB
testcase_31 AC 318 ms
55,128 KB
testcase_32 AC 315 ms
54,984 KB
testcase_33 AC 344 ms
55,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    readLine()!!.toInt()
    var V: IntArray = readLine()!!.split(" ").map(String::toInt).toIntArray()

    fun getMinusValue(targetIndex: Int): Int = if (targetIndex < 0) 0 else V[targetIndex]

    for (i in (0 until V.size)) {
        val minus2 = getMinusValue(i - 2)
        val minus3 = getMinusValue(i - 3)
        V[i] += if (minus2 > minus3) minus2 else minus3
    }
    println(V.max())
}
0