結果

問題 No.1275 綺麗な式
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-08-19 01:59:01
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 10,484 ms
コンパイル使用メモリ 394,196 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-19 01:59:16
合計ジャッジ時間 12,197 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 0 ms
6,812 KB
testcase_03 AC 1 ms
6,812 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 0 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 0 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 0 ms
6,944 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 0 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 0 ms
6,944 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 1 ms
6,940 KB
testcase_41 AC 1 ms
6,944 KB
testcase_42 AC 1 ms
6,944 KB
testcase_43 AC 1 ms
6,940 KB
testcase_44 AC 1 ms
6,940 KB
testcase_45 AC 1 ms
6,944 KB
testcase_46 AC 0 ms
6,940 KB
testcase_47 AC 0 ms
6,944 KB
testcase_48 AC 1 ms
6,940 KB
testcase_49 AC 1 ms
6,944 KB
testcase_50 AC 1 ms
6,940 KB
testcase_51 AC 1 ms
6,940 KB
testcase_52 AC 1 ms
6,944 KB
testcase_53 AC 1 ms
6,940 KB
testcase_54 AC 1 ms
6,940 KB
testcase_55 AC 1 ms
6,944 KB
testcase_56 AC 1 ms
6,940 KB
testcase_57 AC 1 ms
6,940 KB
testcase_58 AC 1 ms
6,944 KB
testcase_59 AC 1 ms
6,940 KB
testcase_60 AC 1 ms
6,940 KB
testcase_61 AC 0 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://yukicoder.me/problems/no/1275

use proconio::input;

use std::i64;

const MOD:i64 = 1000000007;

fn prod(left: &[[i64;2];2], right : &[[i64;2];2]) -> [[i64;2]; 2] {
    let mut new_matrix = [[0, 0], [0, 0]];
    for i in 0..2 {
        for j in 0..2 {
            for k in 0..2{
                new_matrix[i][j] += (left[i][k] * right[k][j]) % MOD;
                new_matrix[i][j] %= MOD
            }
        }
    }
    return new_matrix;
}

fn main() {
    input! {
        a: i64,
        b: i64,
        n: i64,
    }

    //  (a + sqrt(b))^n について計算する
    let mut base_matrix = [[a, b], [1, a]];
    let mut ans_matrix = [[1, 0], [0, 1]];
    let mut n1 = n;
    while n1 > 0 {
        if n1 % 2 == 1 {
            ans_matrix = prod(&base_matrix, &ans_matrix);
        }

        base_matrix = prod(&base_matrix, &base_matrix);
        n1 /= 2;
    }
    let a1 = ans_matrix[0][0];

    //  (a - sqrt(b))^n について計算する
    let mut base_matrix2= [[a, -b], [-1, a]];
    let mut ans_matrix2 = [[1, 0], [0, 1]];
    let mut n2 = n;
    while n2 > 0 {
        if n2 % 2 == 1 {
            ans_matrix2 = prod(&base_matrix2, &ans_matrix2);
        }

        base_matrix2 = prod(&base_matrix2, &base_matrix2);
        n2 /= 2;
    }
    let a2 = ans_matrix2[0][0];

    let answer = (a1 + a2) % MOD;
    println!("{}", answer);




}
0