結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー testtest
提出日時 2022-11-25 06:05:59
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 43,264 KB
最終ジャッジ日時 2024-10-01 16:12:57
合計ジャッジ時間 2,498 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
39,424 KB
testcase_01 AC 56 ms
39,296 KB
testcase_02 AC 64 ms
39,168 KB
testcase_03 AC 62 ms
39,168 KB
testcase_04 AC 56 ms
39,296 KB
testcase_05 AC 54 ms
39,296 KB
testcase_06 AC 56 ms
39,296 KB
testcase_07 AC 54 ms
39,168 KB
testcase_08 AC 54 ms
39,168 KB
testcase_09 AC 72 ms
42,752 KB
testcase_10 AC 76 ms
42,752 KB
testcase_11 AC 203 ms
43,264 KB
testcase_12 AC 92 ms
42,752 KB
testcase_13 AC 200 ms
43,264 KB
testcase_14 AC 93 ms
42,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input) {
    const src = input.replace("\n", "").split(" ");
    const n = parseInt(src[0]);
    const m = parseInt(src[1]);
    let ans = 0;
    if (n < 3) {
        ans = (n == 1 ? 0 : 1 % m);
    } else {
        let a = 0;
        let b = 1;
        let c = 1;
        for (i = 3; i <= n; i++) {
            c = (a + b) % m;
            a = b;
            b = c;
        }
        ans = c;
    }
    console.log(ans);
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0