結果

問題 No.1258 コインゲーム
ユーザー phsplsphspls
提出日時 2022-10-09 17:48:55
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 1,028 bytes
コンパイル時間 14,148 ms
コンパイル使用メモリ 403,044 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-23 16:46:31
合計ジャッジ時間 25,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
6,812 KB
testcase_01 AC 54 ms
6,816 KB
testcase_02 AC 20 ms
6,940 KB
testcase_03 AC 175 ms
6,944 KB
testcase_04 AC 200 ms
6,940 KB
testcase_05 AC 32 ms
6,940 KB
testcase_06 AC 143 ms
6,940 KB
testcase_07 AC 15 ms
6,940 KB
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 154 ms
6,940 KB
testcase_10 AC 219 ms
6,944 KB
testcase_11 AC 194 ms
6,944 KB
testcase_12 AC 139 ms
6,940 KB
testcase_13 AC 43 ms
6,940 KB
testcase_14 AC 14 ms
6,940 KB
testcase_15 AC 170 ms
6,940 KB
testcase_16 AC 34 ms
6,944 KB
testcase_17 AC 194 ms
6,944 KB
testcase_18 AC 70 ms
6,940 KB
testcase_19 AC 66 ms
6,940 KB
testcase_20 AC 143 ms
6,940 KB
testcase_21 AC 180 ms
6,944 KB
testcase_22 AC 128 ms
6,940 KB
testcase_23 AC 95 ms
6,944 KB
testcase_24 AC 35 ms
6,940 KB
testcase_25 AC 89 ms
6,944 KB
testcase_26 AC 76 ms
6,940 KB
testcase_27 AC 177 ms
6,944 KB
testcase_28 AC 47 ms
6,940 KB
testcase_29 AC 48 ms
6,940 KB
testcase_30 AC 218 ms
6,940 KB
testcase_31 AC 56 ms
6,940 KB
testcase_32 AC 25 ms
6,940 KB
testcase_33 AC 146 ms
6,944 KB
testcase_34 AC 180 ms
6,940 KB
testcase_35 AC 63 ms
6,940 KB
testcase_36 AC 177 ms
6,944 KB
testcase_37 AC 69 ms
6,940 KB
testcase_38 AC 169 ms
6,940 KB
testcase_39 AC 47 ms
6,944 KB
testcase_40 AC 225 ms
6,940 KB
testcase_41 AC 229 ms
6,940 KB
testcase_42 AC 227 ms
6,940 KB
testcase_43 AC 230 ms
6,940 KB
testcase_44 AC 226 ms
6,944 KB
testcase_45 AC 228 ms
6,940 KB
testcase_46 AC 228 ms
6,944 KB
testcase_47 AC 226 ms
6,940 KB
testcase_48 AC 228 ms
6,940 KB
testcase_49 AC 224 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

        (MOD + power(1+m, n) - power(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 as usize - 2);
    for _ in 0..s {
        result.push(solve(mod2));
    }
    for &v in result.iter() {
        println!("{}", v);
    }
}
0