結果

問題 No.45 回転寿司
ユーザー くわいくわい
提出日時 2015-12-14 17:12:45
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 823 ms / 5,000 ms
コード長 495 bytes
コンパイル時間 8,869 ms
コンパイル使用メモリ 273,640 KB
実行使用メモリ 65,508 KB
最終ジャッジ日時 2024-06-29 12:19:31
合計ジャッジ時間 36,731 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 813 ms
65,228 KB
testcase_01 AC 800 ms
65,288 KB
testcase_02 AC 811 ms
65,472 KB
testcase_03 AC 791 ms
65,220 KB
testcase_04 AC 786 ms
65,280 KB
testcase_05 AC 797 ms
65,236 KB
testcase_06 AC 795 ms
65,348 KB
testcase_07 AC 815 ms
65,408 KB
testcase_08 AC 804 ms
65,024 KB
testcase_09 AC 812 ms
65,476 KB
testcase_10 AC 796 ms
65,456 KB
testcase_11 AC 804 ms
65,208 KB
testcase_12 AC 805 ms
64,964 KB
testcase_13 AC 823 ms
65,396 KB
testcase_14 AC 812 ms
65,340 KB
testcase_15 AC 791 ms
65,444 KB
testcase_16 AC 795 ms
65,168 KB
testcase_17 AC 785 ms
65,296 KB
testcase_18 AC 793 ms
65,016 KB
testcase_19 AC 818 ms
65,432 KB
testcase_20 AC 793 ms
65,220 KB
testcase_21 AC 785 ms
65,508 KB
testcase_22 AC 792 ms
65,136 KB
testcase_23 AC 789 ms
65,224 KB
testcase_24 AC 799 ms
65,268 KB
testcase_25 AC 809 ms
65,132 KB
testcase_26 AC 817 ms
65,316 KB
testcase_27 AC 817 ms
65,244 KB
testcase_28 AC 793 ms
65,308 KB
testcase_29 AC 787 ms
65,344 KB
testcase_30 AC 787 ms
65,300 KB
testcase_31 AC 802 ms
65,320 KB
testcase_32 AC 818 ms
64,996 KB
testcase_33 AC 796 ms
65,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

object Main extends App {
  def proc(n: Int, v: Array[Int]): Int = {
    val dp: Array[Array[Int]] = Array.fill(n + 3, 2)(0)

    (0 until n) foreach { i =>
      dp(i + 1)(1) = (dp(i)(0) + v(i)) max dp(i)(1)
      dp(i + 2)(0) = dp(i)(0) + v(i) max dp(i + 2)(0)
      dp(i + 3)(0) = dp(i)(0) + v(i)
    }

    dp(n).max
  }

  val n: Int = StdIn.readInt()
  val v: Array[Int] = StdIn.readLine().split(" ").map(_.toInt)

  val result: Int = proc(n, v)
  println(result)
}
0