結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | sakikuroe |
提出日時 | 2021-10-01 15:34:15 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,282 bytes |
コンパイル時間 | 11,072 ms |
コンパイル使用メモリ | 381,200 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 03:21:08 |
合計ジャッジ時間 | 12,121 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,248 KB |
testcase_02 | AC | 0 ms
5,376 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 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 0 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 0 ms
5,376 KB |
testcase_14 | AC | 0 ms
5,376 KB |
ソースコード
use std::io; fn mat_mul(mat1: &Vec<Vec<usize>>, mat2: &Vec<Vec<usize>>, m: usize) -> Vec<Vec<usize>> { let mut res = vec![vec![0, 0], vec![0, 0]]; for i in 0..2 { for j in 0..2 { res[i][j] = (mat1[i][0] % m) * (mat2[0][j] % m) + (mat1[i][1] % m) * (mat2[1][j] % m); res[i][j] %= m; } } res } fn mat_pow(mat: &Vec<Vec<usize>>, n: usize, m: usize) -> Vec<Vec<usize>> { if n == 0 { vec![vec![1, 0], vec![0, 1]] } else if n % 2 == 0 { mat_pow(&mat_mul(mat, mat, m), n / 2, m) } else { mat_mul(mat, &mat_pow(mat, n - 1, m), m) } } fn main() { let (n, m) = { let mut line = String::new(); io::stdin().read_line(&mut line).unwrap(); let word_list: Vec<&str> = line.split_whitespace().collect(); let n: usize = word_list[0].parse::<usize>().unwrap(); let m: usize = word_list[1].parse::<usize>().unwrap(); (n, m) }; let mat = vec![vec![1, 1], vec![1, 0]]; let ans = mat_pow(&mat, n - 2, m)[0][0] % m; println!("{}", ans); }