結果

問題 No.554 recurrence formula
ユーザー 💕💖💞💕💖💞
提出日時 2017-09-08 21:34:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 13,288 ms
コンパイル使用メモリ 435,644 KB
実行使用メモリ 69,528 KB
最終ジャッジ日時 2024-11-20 11:50:45
合計ジャッジ時間 20,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
56,676 KB
testcase_01 AC 319 ms
56,628 KB
testcase_02 AC 329 ms
56,752 KB
testcase_03 AC 327 ms
56,656 KB
testcase_04 AC 324 ms
56,616 KB
testcase_05 AC 321 ms
56,672 KB
testcase_06 AC 327 ms
56,620 KB
testcase_07 AC 325 ms
56,764 KB
testcase_08 AC 326 ms
56,712 KB
testcase_09 AC 325 ms
56,792 KB
testcase_10 AC 332 ms
56,696 KB
testcase_11 AC 335 ms
56,696 KB
testcase_12 AC 336 ms
56,696 KB
testcase_13 AC 362 ms
57,148 KB
testcase_14 AC 333 ms
56,888 KB
testcase_15 AC 357 ms
57,140 KB
testcase_16 AC 356 ms
57,040 KB
testcase_17 AC 359 ms
57,116 KB
testcase_18 AC 359 ms
56,968 KB
testcase_19 AC 402 ms
69,512 KB
testcase_20 AC 400 ms
69,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) {
          ^

ソースコード

diff #

fun main( args : Array<String> ) {
  val ns = mutableMapOf<Int, Long>(1 to 1L)
  var odd = 0L
  var even = 1L
  val n = readLine()!!.toInt()
  val L = 1000_000_007L
  (2..n).map { i ->
    when {
      i%2 == 0 -> { 
        ns[i] = i*even%L
        odd += ns[i]!!
      }
      else -> {
        ns[i] = i*odd%L
        even += ns[i]!!
      }
    }
  }
  println( ns[n]!!%L )
  
}
0