結果

問題 No.1258 コインゲーム
ユーザー umezoumezo
提出日時 2020-10-16 22:50:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 201,272 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 23:11:18
合計ジャッジ時間 13,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
5,248 KB
testcase_01 AC 68 ms
5,376 KB
testcase_02 AC 26 ms
5,376 KB
testcase_03 AC 223 ms
5,376 KB
testcase_04 AC 244 ms
5,376 KB
testcase_05 AC 41 ms
5,376 KB
testcase_06 AC 179 ms
5,376 KB
testcase_07 AC 19 ms
5,376 KB
testcase_08 AC 17 ms
5,376 KB
testcase_09 AC 91 ms
5,376 KB
testcase_10 AC 218 ms
5,376 KB
testcase_11 AC 239 ms
5,376 KB
testcase_12 AC 173 ms
5,376 KB
testcase_13 AC 56 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 210 ms
5,376 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 240 ms
5,376 KB
testcase_18 AC 89 ms
5,376 KB
testcase_19 AC 82 ms
5,376 KB
testcase_20 AC 176 ms
5,376 KB
testcase_21 AC 224 ms
5,376 KB
testcase_22 AC 158 ms
5,376 KB
testcase_23 AC 114 ms
5,376 KB
testcase_24 AC 44 ms
5,376 KB
testcase_25 AC 112 ms
5,376 KB
testcase_26 AC 94 ms
5,376 KB
testcase_27 AC 218 ms
5,376 KB
testcase_28 AC 57 ms
5,376 KB
testcase_29 AC 61 ms
5,376 KB
testcase_30 AC 269 ms
5,376 KB
testcase_31 AC 70 ms
5,376 KB
testcase_32 AC 31 ms
5,376 KB
testcase_33 AC 187 ms
5,376 KB
testcase_34 AC 224 ms
5,376 KB
testcase_35 AC 79 ms
5,376 KB
testcase_36 AC 218 ms
5,376 KB
testcase_37 AC 84 ms
5,376 KB
testcase_38 AC 210 ms
5,376 KB
testcase_39 AC 59 ms
5,376 KB
testcase_40 AC 273 ms
5,376 KB
testcase_41 AC 274 ms
5,376 KB
testcase_42 AC 271 ms
5,376 KB
testcase_43 AC 271 ms
5,376 KB
testcase_44 AC 271 ms
5,376 KB
testcase_45 AC 275 ms
5,376 KB
testcase_46 AC 272 ms
5,376 KB
testcase_47 AC 271 ms
5,376 KB
testcase_48 AC 272 ms
5,376 KB
testcase_49 AC 273 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

const ll MOD=1e9+7;
const ll A=500000004;

ll modpow(ll x,ll n){
  ll ans=1;
  while(n){
    if(n&1) ans=ans*x %MOD;
    x=x*x %MOD;
    n/=2;
  }
  return ans;
}

int main(){
  int s;
  cin>>s;
  
  while(s--){
    ll n,m;
    int x;
    cin>>n>>m>>x;
    
    if(x==0){
      cout<<(modpow(1+m,n)+modpow((1-m+MOD)%MOD,n))*A%MOD<<endl;
    }
    else{
      cout<<((modpow(1+m,n)-modpow((1-m+MOD)%MOD,n)+MOD)%MOD)*A%MOD<<endl;
    }
  }

  return 0;
}
0