結果

問題 No.1258 コインゲーム
ユーザー nawawannawawan
提出日時 2020-10-16 22:25:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 606 ms
コンパイル使用メモリ 68,240 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 22:23:16
合計ジャッジ時間 8,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
5,248 KB
testcase_01 AC 45 ms
5,376 KB
testcase_02 AC 17 ms
5,376 KB
testcase_03 AC 140 ms
5,376 KB
testcase_04 AC 163 ms
5,376 KB
testcase_05 AC 27 ms
5,376 KB
testcase_06 AC 120 ms
5,376 KB
testcase_07 AC 12 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 59 ms
5,376 KB
testcase_10 AC 151 ms
5,376 KB
testcase_11 AC 166 ms
5,376 KB
testcase_12 AC 119 ms
5,376 KB
testcase_13 AC 36 ms
5,376 KB
testcase_14 AC 14 ms
5,376 KB
testcase_15 AC 143 ms
5,376 KB
testcase_16 AC 28 ms
5,376 KB
testcase_17 AC 155 ms
5,376 KB
testcase_18 AC 59 ms
5,376 KB
testcase_19 AC 54 ms
5,376 KB
testcase_20 AC 114 ms
5,376 KB
testcase_21 AC 145 ms
5,376 KB
testcase_22 AC 101 ms
5,376 KB
testcase_23 AC 75 ms
5,376 KB
testcase_24 AC 29 ms
5,376 KB
testcase_25 AC 74 ms
5,376 KB
testcase_26 AC 61 ms
5,376 KB
testcase_27 AC 147 ms
5,376 KB
testcase_28 AC 40 ms
5,376 KB
testcase_29 AC 39 ms
5,376 KB
testcase_30 AC 177 ms
5,376 KB
testcase_31 AC 46 ms
5,376 KB
testcase_32 AC 20 ms
5,376 KB
testcase_33 AC 115 ms
5,376 KB
testcase_34 AC 145 ms
5,376 KB
testcase_35 AC 50 ms
5,376 KB
testcase_36 AC 146 ms
5,376 KB
testcase_37 AC 56 ms
5,376 KB
testcase_38 AC 138 ms
5,376 KB
testcase_39 AC 38 ms
5,376 KB
testcase_40 AC 179 ms
5,376 KB
testcase_41 AC 171 ms
5,376 KB
testcase_42 AC 196 ms
5,376 KB
testcase_43 AC 178 ms
5,376 KB
testcase_44 AC 173 ms
5,376 KB
testcase_45 AC 171 ms
5,376 KB
testcase_46 AC 175 ms
5,376 KB
testcase_47 AC 189 ms
5,376 KB
testcase_48 AC 176 ms
5,376 KB
testcase_49 AC 190 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
const int MOD = 1e9 + 7;
long long repow(long long x, long long y){
    if(y == 0) return 1;
    long long res = 1;
    while(y > 0){
        if(y & 1) res = res * x % MOD;
        x = x * x % MOD;
        y >>= 1;
    }
    return res;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int testcase;
    cin >> testcase;
    while(testcase--){
        long long N, M, X;
        cin >> N >> M >> X;
        long long temp = repow(M + 1, N);
        long long temp2 = repow(1 - M, N);
        long long t = repow(2, MOD - 2) % MOD;
        if(X == 1){
            cout << ((temp - temp2) * t % MOD + MOD) % MOD << endl;
        }
        else{
            cout << ((temp + temp2) * t % MOD + MOD) % MOD << endl;
        }
    }
}
0