結果

問題 No.526 フィボナッチ数列の第N項をMで割った余りを求める
ユーザー ken miuraken miura
提出日時 2021-10-18 19:53:20
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 232 bytes
コンパイル時間 24,973 ms
コンパイル使用メモリ 377,196 KB
実行使用メモリ 41,088 KB
最終ジャッジ日時 2024-09-19 16:03:58
合計ジャッジ時間 12,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 14 ms
40,896 KB
testcase_13 WA -
testcase_14 AC 14 ms
40,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
  input! {
    n: usize,
    m: usize,
  }
  let mut dp = vec![0; n];
  dp[0] = 0;
  dp[1] = 1;
  for i in 2..n {
    dp[i] = dp[i-1] + dp[i-2];
  }
  let ans = dp[n-1] % m;
  println!("{}", ans);
}
0