結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー hebiyanhebiyan
提出日時 2017-05-23 14:54:50
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 11,524 ms
コンパイル使用メモリ 379,992 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 11:40:30
合計ジャッジ時間 11,973 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

fn getline() -> String {
    let mut s = String::new();

    std::io::stdin().read_line(&mut s).ok();

    s.trim().to_string()
}

fn powmod(b: u32, p: u32, m: u32) -> u32 {
    if b == 0 {
        0
    } else if p == 0 {
        1
    } else if p % 2 == 0 {
        let prev = powmod (b, p / 2, m);

        (prev * prev) % m
    } else {
        let prev = powmod (b, p - 1, m);

        (b * prev) % m
    }
}

fn answer(m: u32) -> u32 {
    (powmod(2017, 4034, m) + 2017) % m
}

fn main() {
    let s = getline();
    let m: u32 = s.parse().unwrap();

    println!("{}", answer(m));
}
0