結果

問題 No.1258 コインゲーム
ユーザー motmot
提出日時 2020-10-17 04:06:40
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 1,022 bytes
コンパイル時間 1,213 ms
コンパイル使用メモリ 84,440 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-21 01:47:58
合計ジャッジ時間 17,826 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
5,248 KB
testcase_01 AC 110 ms
5,376 KB
testcase_02 AC 41 ms
5,376 KB
testcase_03 AC 405 ms
5,376 KB
testcase_04 AC 403 ms
5,376 KB
testcase_05 AC 66 ms
5,376 KB
testcase_06 AC 294 ms
5,376 KB
testcase_07 AC 30 ms
5,376 KB
testcase_08 AC 26 ms
5,376 KB
testcase_09 AC 146 ms
5,376 KB
testcase_10 AC 355 ms
5,376 KB
testcase_11 AC 395 ms
5,376 KB
testcase_12 AC 285 ms
5,376 KB
testcase_13 AC 91 ms
5,376 KB
testcase_14 AC 29 ms
5,376 KB
testcase_15 AC 345 ms
5,376 KB
testcase_16 AC 70 ms
5,376 KB
testcase_17 AC 387 ms
5,376 KB
testcase_18 AC 145 ms
5,376 KB
testcase_19 AC 133 ms
5,376 KB
testcase_20 AC 289 ms
5,376 KB
testcase_21 AC 375 ms
5,376 KB
testcase_22 AC 258 ms
5,376 KB
testcase_23 AC 189 ms
5,376 KB
testcase_24 AC 71 ms
5,376 KB
testcase_25 AC 180 ms
5,376 KB
testcase_26 AC 153 ms
5,376 KB
testcase_27 AC 357 ms
5,376 KB
testcase_28 AC 93 ms
5,376 KB
testcase_29 AC 101 ms
5,376 KB
testcase_30 AC 453 ms
5,376 KB
testcase_31 AC 110 ms
5,376 KB
testcase_32 AC 49 ms
5,376 KB
testcase_33 AC 295 ms
5,376 KB
testcase_34 AC 371 ms
5,376 KB
testcase_35 AC 128 ms
5,376 KB
testcase_36 AC 368 ms
5,376 KB
testcase_37 AC 140 ms
5,376 KB
testcase_38 AC 338 ms
5,376 KB
testcase_39 AC 97 ms
5,376 KB
testcase_40 AC 513 ms
5,376 KB
testcase_41 AC 513 ms
5,376 KB
testcase_42 AC 514 ms
5,376 KB
testcase_43 AC 511 ms
5,376 KB
testcase_44 AC 510 ms
5,376 KB
testcase_45 AC 511 ms
5,376 KB
testcase_46 AC 513 ms
5,376 KB
testcase_47 AC 511 ms
5,376 KB
testcase_48 AC 509 ms
5,376 KB
testcase_49 AC 512 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<cmath>
#include<string>
#include<cstring>
#include<vector>
#include<list>
#include<algorithm>
#include<map>
#include<set>
#include<queue>
#include<stack>
using namespace std;
typedef long long ll;
#define fi first
#define se second
#define mp make_pair
#define mt make_tuple
#define pqueue priority_queue
const int inf=1e9+7;
const ll mod=1e9+7;
const ll mod1=998244353;
const ll big=1e18;
const double PI=2*asin(1);

ll mypow(ll a, ll b) {
  ll ans = 1;
  ll two;
  ll tmp;
  while(b>0) {
    two = 1;
    tmp = a;
    while(2*two<b) {
      two *= 2;
      tmp *= tmp;
      tmp %= mod;
    }
    b -= two;
    ans *= tmp;
    ans %= mod;
  }
  return ans;
}

int main() {
  int S;
  cin>>S;
  ll ans[S];
  ll N, M, X;
  for(int i=0;i<S;++i) {
    cin>>N>>M>>X;
    if(X==1) ans[i] = (mypow(1+M, N)-mypow(1-M+mod, N)+mod)%mod*mypow(2, mod-2)%mod;
    else ans[i] = (mypow(1+M, N)+mypow(1-M+mod, N))%mod*mypow(2, mod-2)%mod;
  }
  for(int i=0;i<S;++i) cout<<ans[i]<<endl;
}

0