結果

問題 No.314 ケンケンパ
ユーザー くわいくわい
提出日時 2015-12-10 16:17:13
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 879 ms / 1,000 ms
コード長 473 bytes
コンパイル時間 7,817 ms
コンパイル使用メモリ 241,168 KB
実行使用メモリ 62,844 KB
最終ジャッジ日時 2024-06-29 12:18:20
合計ジャッジ時間 24,749 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 779 ms
62,816 KB
testcase_01 AC 879 ms
62,640 KB
testcase_02 AC 778 ms
62,608 KB
testcase_03 AC 763 ms
62,776 KB
testcase_04 AC 773 ms
62,656 KB
testcase_05 AC 751 ms
62,648 KB
testcase_06 AC 764 ms
62,428 KB
testcase_07 AC 760 ms
62,604 KB
testcase_08 AC 757 ms
62,720 KB
testcase_09 AC 759 ms
62,716 KB
testcase_10 AC 755 ms
62,608 KB
testcase_11 AC 752 ms
62,620 KB
testcase_12 AC 748 ms
62,504 KB
testcase_13 AC 762 ms
62,528 KB
testcase_14 AC 758 ms
62,480 KB
testcase_15 AC 775 ms
62,484 KB
testcase_16 AC 761 ms
62,432 KB
testcase_17 AC 754 ms
62,844 KB
testcase_18 AC 792 ms
62,788 KB
testcase_19 AC 777 ms
62,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.annotation.tailrec
import scala.io.StdIn

object Main extends App {

  val mod: Int = Math.pow(10, 9).toInt + 7

  def proc(n: Int): Int = {

    if (n == 1) return 1

    @tailrec
    def rec(cnt: Int, a: Long, b: Long, c: Long): Long = {
      if (cnt <= 2) {
        (a + b + c) % mod
      } else {
        rec(cnt - 1, c, (a + c) % mod, b)
      }
    }

    rec(n, 1, 1, 0).toInt
  }

  val n = StdIn.readInt()
  val result = proc(n)
  println(result)
}
0