結果

問題 No.1258 コインゲーム
ユーザー phsplsphspls
提出日時 2022-10-10 18:48:35
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 1,038 bytes
コンパイル時間 18,636 ms
コンパイル使用メモリ 383,108 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 12:36:03
合計ジャッジ時間 24,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
6,812 KB
testcase_01 AC 51 ms
6,940 KB
testcase_02 AC 19 ms
6,940 KB
testcase_03 AC 166 ms
6,940 KB
testcase_04 AC 189 ms
6,940 KB
testcase_05 AC 32 ms
6,940 KB
testcase_06 AC 137 ms
6,944 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 121 ms
6,940 KB
testcase_10 AC 179 ms
6,940 KB
testcase_11 AC 185 ms
6,944 KB
testcase_12 AC 141 ms
6,944 KB
testcase_13 AC 42 ms
6,944 KB
testcase_14 AC 14 ms
6,940 KB
testcase_15 AC 162 ms
6,944 KB
testcase_16 AC 32 ms
6,940 KB
testcase_17 AC 182 ms
6,944 KB
testcase_18 AC 67 ms
6,944 KB
testcase_19 AC 61 ms
6,940 KB
testcase_20 AC 135 ms
6,940 KB
testcase_21 AC 170 ms
6,940 KB
testcase_22 AC 118 ms
6,940 KB
testcase_23 AC 88 ms
6,944 KB
testcase_24 AC 33 ms
6,940 KB
testcase_25 AC 84 ms
6,944 KB
testcase_26 AC 72 ms
6,944 KB
testcase_27 AC 166 ms
6,944 KB
testcase_28 AC 43 ms
6,944 KB
testcase_29 AC 46 ms
6,940 KB
testcase_30 AC 209 ms
6,940 KB
testcase_31 AC 52 ms
6,944 KB
testcase_32 AC 23 ms
6,944 KB
testcase_33 AC 139 ms
6,940 KB
testcase_34 AC 172 ms
6,948 KB
testcase_35 AC 60 ms
6,944 KB
testcase_36 AC 168 ms
6,944 KB
testcase_37 AC 64 ms
6,944 KB
testcase_38 AC 157 ms
6,944 KB
testcase_39 AC 45 ms
6,944 KB
testcase_40 AC 215 ms
6,940 KB
testcase_41 AC 212 ms
6,940 KB
testcase_42 AC 216 ms
6,944 KB
testcase_43 AC 215 ms
6,940 KB
testcase_44 AC 216 ms
6,940 KB
testcase_45 AC 215 ms
6,940 KB
testcase_46 AC 218 ms
6,940 KB
testcase_47 AC 216 ms
6,940 KB
testcase_48 AC 214 ms
6,944 KB
testcase_49 AC 215 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

const MOD: usize = 1e9 as usize + 7;

fn power(base: usize, times: usize) -> usize {
    if times == 0 { return 1usize; }
    if times == 1 { return base; }
    let temp = power(base, times/2);
    temp * temp % MOD * power(base, times%2) % MOD
}

fn solve(mod2: usize) -> usize {
    let mut nmx = String::new();
    std::io::stdin().read_line(&mut nmx).ok();
    let nmx: Vec<usize> = nmx.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nmx[0];
    let m = nmx[1];
    let x = nmx[2];
    if x == 0 {
        (power(1+m, n) + power((MOD+1-m) % MOD, n)) % MOD * mod2 % MOD
    } else {
        (MOD + power(1+m, n) - power((MOD+1-m) % MOD, n)) % MOD * mod2 % MOD
    }
}

fn main() {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    let s: usize = s.trim().parse().unwrap();
    let mut result = Vec::with_capacity(s);
    let mod2 = power(2, MOD-2);
    for _ in 0..s {
        result.push(solve(mod2));
    }
    for &v in result.iter() {
        println!("{}", v);
    }
}
0