結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー arbtarbt
提出日時 2017-09-26 21:44:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 10,997 ms
コンパイル使用メモリ 433,892 KB
実行使用メモリ 55,440 KB
最終ジャッジ日時 2024-11-20 12:57:44
合計ジャッジ時間 17,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 348 ms
55,268 KB
testcase_01 AC 345 ms
55,188 KB
testcase_02 AC 349 ms
55,244 KB
testcase_03 AC 346 ms
55,272 KB
testcase_04 AC 350 ms
55,292 KB
testcase_05 AC 346 ms
55,220 KB
testcase_06 AC 340 ms
55,344 KB
testcase_07 AC 347 ms
55,320 KB
testcase_08 AC 347 ms
55,156 KB
testcase_09 AC 353 ms
55,236 KB
testcase_10 AC 374 ms
55,228 KB
testcase_11 AC 461 ms
55,376 KB
testcase_12 AC 460 ms
55,292 KB
testcase_13 AC 463 ms
55,280 KB
testcase_14 AC 461 ms
55,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:29:11: warning: parameter 'argv' is never used
fun main( argv : Array<String> ) {
          ^

ソースコード

diff #

import java.util.Scanner

//
fun _Do() {
    

    val N = scan.nextLong()
    val M = scan.nextLong()
    
    println(when(N){
        1L -> 0L
        2L -> 1L
        else -> {
            var f1 = 0L
            var f2 = 1L
            var f=1L
            for (i in 3..N) {
                f = (f1+f2) % M
                f1 = f2 % M
                f2 = f
            }
            f
        }
    })
}

var scan = Scanner(System.`in`)
fun main( argv : Array<String> ) {
    _Do()
}
0