結果
| 問題 | No.1258 コインゲーム | 
| コンテスト | |
| ユーザー |  hanbei_dayo | 
| 提出日時 | 2020-10-17 12:33:52 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 294 ms / 2,000 ms | 
| コード長 | 916 bytes | 
| コンパイル時間 | 1,877 ms | 
| コンパイル使用メモリ | 168,648 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-21 02:03:21 | 
| 合計ジャッジ時間 | 13,601 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 50 | 
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define N (1000000000+7)
//#define N 998244353
#define INF 1e18
typedef long long ll;
typedef vector<ll> vec;
typedef vector<vec> mat;
const int inf = (int)1e9; 
ll inv(ll x,ll power) {
	ll res = 1;
	ll k = power;
	ll y = x%N;
	while (k) {
		if (k & 1)res = (res*y) % N;
		y = (y%N*y%N) % N;
		k /= 2;
	}
	return res;
}
int main(void){
    int S;
    cin>>S;
    while(S--){
        ll n,m,x;
        cin>>n>>m>>x;
        ll INV = inv(2LL,N-2);
        ll ans1 = (inv(m+1,n)+inv(m-1,n))%N;
        ans1 = (ans1+N)%N;
        ans1= (ans1*INV)%N;
        ll ans2 = (inv(m+1,n)-inv(m-1,n))%N;
        ans2 = (ans2+N)%N;
        ans2 = (ans2*INV)%N;
        if(n%2==0){
            if(x==0)cout<<ans1<<endl;
            else cout<<ans2<<endl;
        }
        else{
            if(x==0)cout<<ans2<<endl;
            else cout<<ans1<<endl;
        }
    }
    return 0;
}
            
            
            
        