結果

問題 No.16 累乗の加算
ユーザー hitoyozakehitoyozake
提出日時 2018-07-25 23:39:30
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 13,845 ms
コンパイル使用メモリ 380,008 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 07:17:39
合計ジャッジ時間 14,594 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `r`
 --> src/main.rs:5:9
  |
5 |     let r = std::io::stdin().read_line(& mut x);
  |         ^ help: if this is intentional, prefix it with an underscore: `_r`
  |
  = note: `#[warn(unused_variables)]` on by default

ソースコード

diff #

fn read_line()->String{
    let mut x = String::new();

    let r = std::io::stdin().read_line(& mut x);

    x
}

fn bin_pow(x:u64, mut n:u64)->u64{

    let mut y:u64 = 1;
    let mut p:u64 = x;

    while n > 0{
        if n % 2 == 0 {
            p = (p % 1000003) * (p % 1000003);
            n /= 2;
        }
        else{
            y = (y%1000003) * (p % 1000003);
            n -= 1;
        }

    }
    y
}


fn main() {
    let a = read_line();
    let a_array:Vec<&str> = a.split(' ').collect();
    let base = a_array[0].parse::<u64>().unwrap();
    let b = read_line();
    let trimed_b = b.trim();
    let numbers_s: Vec<&str> = trimed_b.split(' ').collect();
    let mut sum:u64 = 0;
    for num_s in numbers_s{
        let num= num_s.parse::<u64>().unwrap();
        //println!("{}", base);

        sum += bin_pow(base, num)%1000003;
    }

    println!("{}", sum);



}
0