結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 15:40:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,167 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 11,799 ms
コンパイル使用メモリ 436,252 KB
実行使用メモリ 276,552 KB
最終ジャッジ日時 2024-11-20 09:46:00
合計ジャッジ時間 20,911 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
56,996 KB
testcase_01 AC 319 ms
56,952 KB
testcase_02 AC 318 ms
56,884 KB
testcase_03 AC 319 ms
57,156 KB
testcase_04 AC 322 ms
56,928 KB
testcase_05 AC 319 ms
56,964 KB
testcase_06 AC 318 ms
57,052 KB
testcase_07 AC 317 ms
56,828 KB
testcase_08 AC 324 ms
56,868 KB
testcase_09 AC 347 ms
61,368 KB
testcase_10 AC 416 ms
101,056 KB
testcase_11 AC 1,167 ms
276,552 KB
testcase_12 AC 571 ms
167,452 KB
testcase_13 AC 1,133 ms
276,308 KB
testcase_14 AC 1,095 ms
276,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
  val (n,m) = readLine()!!.split(" ").map { x -> x.toLong() }

  val fs = mutableListOf<Long>(0, 1)
  (2..n-1).map {
    val next = fs[fs.size-1] + fs[fs.size-2]
    fs.add( next%m )
  }
  println( fs[fs.size-1]%m )
}
0