結果

問題 No.1258 コインゲーム
ユーザー hiro71687khiro71687k
提出日時 2023-03-29 02:35:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 582 ms / 2,000 ms
コード長 1,072 bytes
コンパイル時間 4,772 ms
コンパイル使用メモリ 261,104 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-20 14:29:55
合計ジャッジ時間 24,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
5,248 KB
testcase_01 AC 130 ms
5,376 KB
testcase_02 AC 48 ms
5,376 KB
testcase_03 AC 436 ms
5,376 KB
testcase_04 AC 484 ms
5,376 KB
testcase_05 AC 76 ms
5,376 KB
testcase_06 AC 356 ms
5,376 KB
testcase_07 AC 34 ms
5,376 KB
testcase_08 AC 31 ms
5,376 KB
testcase_09 AC 176 ms
5,376 KB
testcase_10 AC 435 ms
5,376 KB
testcase_11 AC 477 ms
5,376 KB
testcase_12 AC 350 ms
5,376 KB
testcase_13 AC 109 ms
5,376 KB
testcase_14 AC 36 ms
5,376 KB
testcase_15 AC 429 ms
5,376 KB
testcase_16 AC 85 ms
5,376 KB
testcase_17 AC 474 ms
5,376 KB
testcase_18 AC 176 ms
5,376 KB
testcase_19 AC 167 ms
5,376 KB
testcase_20 AC 364 ms
5,376 KB
testcase_21 AC 451 ms
5,376 KB
testcase_22 AC 314 ms
5,376 KB
testcase_23 AC 230 ms
5,376 KB
testcase_24 AC 84 ms
5,376 KB
testcase_25 AC 222 ms
5,376 KB
testcase_26 AC 192 ms
5,376 KB
testcase_27 AC 429 ms
5,376 KB
testcase_28 AC 110 ms
5,376 KB
testcase_29 AC 116 ms
5,376 KB
testcase_30 AC 537 ms
5,376 KB
testcase_31 AC 135 ms
5,376 KB
testcase_32 AC 60 ms
5,376 KB
testcase_33 AC 360 ms
5,376 KB
testcase_34 AC 453 ms
5,376 KB
testcase_35 AC 160 ms
5,376 KB
testcase_36 AC 434 ms
5,376 KB
testcase_37 AC 195 ms
5,376 KB
testcase_38 AC 417 ms
5,376 KB
testcase_39 AC 116 ms
5,376 KB
testcase_40 AC 557 ms
5,376 KB
testcase_41 AC 571 ms
5,376 KB
testcase_42 AC 572 ms
5,376 KB
testcase_43 AC 569 ms
5,376 KB
testcase_44 AC 571 ms
5,376 KB
testcase_45 AC 581 ms
5,376 KB
testcase_46 AC 581 ms
5,376 KB
testcase_47 AC 582 ms
5,376 KB
testcase_48 AC 574 ms
5,376 KB
testcase_49 AC 566 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=14449999999999994;
ll mod=1000000007;
ll modpow(ll x, ll n) {
  x = x%mod;
  if(n==0) return 1;  //再帰の終了条件

  else if(n%2==1) {
    return (x*modpow(x, n-1))%mod;  //nが奇数ならnを1ずらす
  }
  else return modpow((x*x)%mod, n/2)%mod;  //nが偶数ならnが半分になる
}
int main(){
    ll s;
    cin >> s;
    for (ll o = 0; o < s; o++)
    {
        ll n,m,x;
        cin >> n >> m >> x;
        ll y=modpow(1+m,n);
        ll z=modpow(1-m,n);
        if (x==0)
        {
            ll ans=y+z;
            ans%=mod;
            ans+=mod;
            ans%=mod;
            ans*=inv_mod(2,mod);
            ans%=mod;
            cout << ans << endl;
        }else{
            ll ans=y-z;
            ans%=mod;
            ans+=mod;
            ans%=mod;
            ans*=inv_mod(2,mod);
            ans%=mod;
            cout << ans << endl;
        }
        
    }
    
}
0