結果

問題 No.1258 コインゲーム
ユーザー milanis48663220milanis48663220
提出日時 2020-10-16 22:09:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 2,231 bytes
コンパイル時間 759 ms
コンパイル使用メモリ 83,896 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 21:57:29
合計ジャッジ時間 10,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
5,248 KB
testcase_01 AC 54 ms
5,376 KB
testcase_02 AC 22 ms
5,376 KB
testcase_03 AC 177 ms
5,376 KB
testcase_04 AC 204 ms
5,376 KB
testcase_05 AC 34 ms
5,376 KB
testcase_06 AC 143 ms
5,376 KB
testcase_07 AC 17 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 74 ms
5,376 KB
testcase_10 AC 175 ms
5,376 KB
testcase_11 AC 195 ms
5,376 KB
testcase_12 AC 140 ms
5,376 KB
testcase_13 AC 45 ms
5,376 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 170 ms
5,376 KB
testcase_16 AC 36 ms
5,376 KB
testcase_17 AC 195 ms
5,376 KB
testcase_18 AC 72 ms
5,376 KB
testcase_19 AC 66 ms
5,376 KB
testcase_20 AC 144 ms
5,376 KB
testcase_21 AC 184 ms
5,376 KB
testcase_22 AC 129 ms
5,376 KB
testcase_23 AC 94 ms
5,376 KB
testcase_24 AC 36 ms
5,376 KB
testcase_25 AC 89 ms
5,376 KB
testcase_26 AC 76 ms
5,376 KB
testcase_27 AC 175 ms
5,376 KB
testcase_28 AC 47 ms
5,376 KB
testcase_29 AC 50 ms
5,376 KB
testcase_30 AC 224 ms
5,376 KB
testcase_31 AC 56 ms
5,376 KB
testcase_32 AC 25 ms
5,376 KB
testcase_33 AC 146 ms
5,376 KB
testcase_34 AC 180 ms
5,376 KB
testcase_35 AC 65 ms
5,376 KB
testcase_36 AC 183 ms
5,376 KB
testcase_37 AC 71 ms
5,376 KB
testcase_38 AC 165 ms
5,376 KB
testcase_39 AC 50 ms
5,376 KB
testcase_40 AC 212 ms
5,376 KB
testcase_41 AC 216 ms
5,376 KB
testcase_42 AC 218 ms
5,376 KB
testcase_43 AC 211 ms
5,376 KB
testcase_44 AC 214 ms
5,376 KB
testcase_45 AC 217 ms
5,376 KB
testcase_46 AC 207 ms
5,376 KB
testcase_47 AC 211 ms
5,376 KB
testcase_48 AC 209 ms
5,376 KB
testcase_49 AC 211 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;


const ll MOD = 1000000007;

class ModInt{
    public:
    ll v;
    ModInt(ll _v = 0){
        v = _v;
    }
    ModInt operator+(ll n){
        return ModInt((v+n)%MOD);
    }
    ModInt operator-(ll n){
        return ModInt((v-n+MOD)%MOD);
    }
    ModInt operator*(ll n){
        return ModInt((v*n)%MOD);
    }
    ModInt operator/(ll n){
        return ModInt((ModInt(n).inv()*v).v%MOD);
    }

    void operator+=(ll n){
        v = (v+n)%MOD;
    }
    void operator-=(ll n){
        v = (v-n+MOD)%MOD;
    }
    void operator*=(ll n){
        v = (v*n)%MOD;
    }
    
    
    ModInt operator+(ModInt n){
        return ModInt((v+n.v)%MOD);
    }
    ModInt operator-(ModInt n){
        return ModInt((v-n.v+MOD)%MOD);
    }
    ModInt operator*(ModInt n){
        return ModInt((v*n.v)%MOD);
    }
    ModInt operator/(ModInt n){
        return ModInt((n.inv()*v).v%MOD);
    }

    void operator+=(ModInt n){
        v = (v+n.v)%MOD;
    }
    void operator-=(ModInt n){
        v = (v-n.v+MOD)%MOD;
    }
    void operator*=(ModInt n){
        v = (v*n.v)%MOD;
    }

    void operator=(ModInt n){
        v = n.v;
    }
    void operator=(ll n){
        v = n;
    }

    ModInt inv(){
        if(v == 1) return ModInt(1);
        else return ModInt(MOD-ModInt(MOD%v).inv().v*(MOD/v)%MOD);
    }
};

ostream& operator<<(ostream& os, const ModInt& m){
    os << m.v;
    return os;
}

istream & operator >> (istream &in,  ModInt &m){
    in >> m.v;
    return in;
}

ModInt pow(ModInt a, ll n) {
	ModInt ans = 1;
	ModInt tmp = a;
	for (int i = 0; i <= 60; i++) {
		ll m = (ll)1 << i;
		if (m & n) {
		ans *= tmp;
		}
		tmp *= tmp;
	}
	return ans;
}

void solve(){
    ll n, m, x;
    cin >> n >> m >> x;
    if((x+n)%2 == 0){
        cout << (pow(ModInt(m+1), n)+pow(ModInt(m-1), n))/2 << endl;
    }else{
        cout << (pow(ModInt(m+1), n)-pow(ModInt(m-1), n))/2 << endl;
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int s; cin >> s;
    for(int i = 0; i < s; i++) solve();
}
0