結果

問題 No.1258 コインゲーム
ユーザー phsplsphspls
提出日時 2022-10-16 13:25:19
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 1,009 bytes
コンパイル時間 13,869 ms
コンパイル使用メモリ 378,196 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 09:27:21
合計ジャッジ時間 25,144 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
6,812 KB
testcase_01 AC 55 ms
6,812 KB
testcase_02 AC 64 ms
6,940 KB
testcase_03 AC 170 ms
6,944 KB
testcase_04 AC 191 ms
6,940 KB
testcase_05 AC 30 ms
6,940 KB
testcase_06 AC 135 ms
6,940 KB
testcase_07 AC 14 ms
6,940 KB
testcase_08 AC 12 ms
6,944 KB
testcase_09 AC 70 ms
6,940 KB
testcase_10 AC 167 ms
6,944 KB
testcase_11 AC 187 ms
6,940 KB
testcase_12 AC 140 ms
6,940 KB
testcase_13 AC 42 ms
6,940 KB
testcase_14 AC 14 ms
6,944 KB
testcase_15 AC 162 ms
6,944 KB
testcase_16 AC 33 ms
6,940 KB
testcase_17 AC 186 ms
6,944 KB
testcase_18 AC 68 ms
6,940 KB
testcase_19 AC 63 ms
6,940 KB
testcase_20 AC 137 ms
6,940 KB
testcase_21 AC 171 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 83 ms
6,944 KB
testcase_26 AC 72 ms
6,940 KB
testcase_27 AC 167 ms
6,944 KB
testcase_28 AC 43 ms
6,944 KB
testcase_29 AC 47 ms
6,940 KB
testcase_30 AC 206 ms
6,944 KB
testcase_31 AC 52 ms
6,940 KB
testcase_32 AC 23 ms
6,944 KB
testcase_33 AC 138 ms
6,944 KB
testcase_34 AC 173 ms
6,944 KB
testcase_35 AC 59 ms
6,940 KB
testcase_36 AC 168 ms
6,940 KB
testcase_37 AC 64 ms
6,944 KB
testcase_38 AC 159 ms
6,944 KB
testcase_39 AC 44 ms
6,940 KB
testcase_40 AC 213 ms
6,940 KB
testcase_41 AC 216 ms
6,940 KB
testcase_42 AC 215 ms
6,944 KB
testcase_43 AC 214 ms
6,940 KB
testcase_44 AC 213 ms
6,944 KB
testcase_45 AC 214 ms
6,944 KB
testcase_46 AC 218 ms
6,940 KB
testcase_47 AC 215 ms
6,944 KB
testcase_48 AC 213 ms
6,940 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(m+1, n) + power(MOD+1-m, n)) * mod2 % MOD
    } else {
        (MOD + power(m+1, n) - power(MOD+1-m, n)) * 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