結果

問題 No.1258 コインゲーム
ユーザー leaf_1415leaf_1415
提出日時 2020-10-16 21:46:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 1,042 ms
コンパイル使用メモリ 55,500 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 21:17:04
合計ジャッジ時間 11,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
5,248 KB
testcase_01 AC 64 ms
5,376 KB
testcase_02 AC 23 ms
5,376 KB
testcase_03 AC 203 ms
5,376 KB
testcase_04 AC 227 ms
5,376 KB
testcase_05 AC 37 ms
5,376 KB
testcase_06 AC 163 ms
5,376 KB
testcase_07 AC 18 ms
5,376 KB
testcase_08 AC 16 ms
5,376 KB
testcase_09 AC 81 ms
5,376 KB
testcase_10 AC 197 ms
5,376 KB
testcase_11 AC 220 ms
5,376 KB
testcase_12 AC 163 ms
5,376 KB
testcase_13 AC 50 ms
5,376 KB
testcase_14 AC 16 ms
5,376 KB
testcase_15 AC 191 ms
5,376 KB
testcase_16 AC 39 ms
5,376 KB
testcase_17 AC 224 ms
5,376 KB
testcase_18 AC 80 ms
5,376 KB
testcase_19 AC 75 ms
5,376 KB
testcase_20 AC 157 ms
5,376 KB
testcase_21 AC 205 ms
5,376 KB
testcase_22 AC 142 ms
5,376 KB
testcase_23 AC 105 ms
5,376 KB
testcase_24 AC 41 ms
5,376 KB
testcase_25 AC 103 ms
5,376 KB
testcase_26 AC 89 ms
5,376 KB
testcase_27 AC 200 ms
5,376 KB
testcase_28 AC 53 ms
5,376 KB
testcase_29 AC 57 ms
5,376 KB
testcase_30 AC 254 ms
5,376 KB
testcase_31 AC 62 ms
5,376 KB
testcase_32 AC 28 ms
5,376 KB
testcase_33 AC 167 ms
5,376 KB
testcase_34 AC 207 ms
5,376 KB
testcase_35 AC 71 ms
5,376 KB
testcase_36 AC 200 ms
5,376 KB
testcase_37 AC 78 ms
5,376 KB
testcase_38 AC 188 ms
5,376 KB
testcase_39 AC 54 ms
5,376 KB
testcase_40 AC 235 ms
5,376 KB
testcase_41 AC 233 ms
5,376 KB
testcase_42 AC 235 ms
5,376 KB
testcase_43 AC 239 ms
5,376 KB
testcase_44 AC 238 ms
5,376 KB
testcase_45 AC 242 ms
5,376 KB
testcase_46 AC 240 ms
5,376 KB
testcase_47 AC 240 ms
5,376 KB
testcase_48 AC 237 ms
5,376 KB
testcase_49 AC 239 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define llint long long
#define mod 1000000007

using namespace std;

llint T;
llint n, m, x;
llint inv2;

llint modpow(llint a, llint n)
{
	if(n == 0) return 1;
	if(n % 2){
		return ((a%mod) * (modpow(a, n-1)%mod)) % mod;
	}
	else{
		return modpow((a*a)%mod, n/2) % mod;
	}
}

int main(void)
{
  ios::sync_with_stdio(0);
  cin.tie(0);

  inv2 = (mod+1)/2;

  cin >> T;
  for(int t = 0; t < T; t++){
    cin >> n >> m >> x;

    llint ans;
    llint a = modpow(1+m, n), b = modpow(1+mod-m, n);
    if(x == 0) ans = (a + b) * inv2 % mod;
    else ans = (a + mod - b) * inv2 % mod;
    cout << ans << endl;
  }
  return 0;
}
0