結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | mlpj56d |
提出日時 | 2017-06-18 20:39:35 |
言語 | JavaScript (node v21.7.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 560 bytes |
コンパイル時間 | 36 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 39,808 KB |
最終ジャッジ日時 | 2024-10-13 00:08:46 |
合計ジャッジ時間 | 1,634 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
ソースコード
var line = input.split(' '); var n = parseInt(line[0]); var m = parseInt(line[1]); function fib (n,m){ var a = 0; var b = 1; var c = (a + b) % m; if (n <= 3 ) { switch (n) { case 1: console.log(a) break; case 2: console.log(b) break; case 3: console.log(c) break; default: break; } } else { for (i = 4 ; i <= n; i++) { a = b ; b = c ; c = (a + b) % m ; } console.log(c); } }