結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー arbtarbt
提出日時 2017-09-26 21:39:10
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 481 bytes
コンパイル時間 9,975 ms
コンパイル使用メモリ 430,708 KB
実行使用メモリ 55,448 KB
最終ジャッジ日時 2024-11-20 12:56:34
合計ジャッジ時間 15,878 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
55,148 KB
testcase_01 AC 308 ms
55,332 KB
testcase_02 AC 304 ms
55,040 KB
testcase_03 AC 305 ms
55,248 KB
testcase_04 AC 324 ms
55,168 KB
testcase_05 AC 319 ms
55,268 KB
testcase_06 AC 306 ms
55,084 KB
testcase_07 AC 321 ms
55,340 KB
testcase_08 AC 325 ms
55,168 KB
testcase_09 AC 315 ms
55,208 KB
testcase_10 AC 324 ms
55,064 KB
testcase_11 WA -
testcase_12 AC 366 ms
55,268 KB
testcase_13 WA -
testcase_14 AC 367 ms
55,448 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.nextInt()
    val M = scan.nextInt()
    
    println(when(N){
        1 -> 0
        2 -> 1
        else -> {
            var f1 = 0
            var f2 = 1
            var f=1
            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