結果

問題 No.1258 コインゲーム
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-09-09 19:48:44
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 865 bytes
コンパイル時間 5,463 ms
コンパイル使用メモリ 310,236 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 12:24:30
合計ジャッジ時間 18,434 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
5,248 KB
testcase_01 AC 68 ms
5,376 KB
testcase_02 AC 27 ms
5,376 KB
testcase_03 AC 229 ms
5,376 KB
testcase_04 AC 254 ms
5,376 KB
testcase_05 AC 42 ms
5,376 KB
testcase_06 AC 184 ms
5,376 KB
testcase_07 AC 19 ms
5,376 KB
testcase_08 AC 18 ms
5,376 KB
testcase_09 AC 93 ms
5,376 KB
testcase_10 AC 222 ms
5,376 KB
testcase_11 AC 245 ms
5,376 KB
testcase_12 AC 180 ms
5,376 KB
testcase_13 AC 59 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 218 ms
5,376 KB
testcase_16 AC 44 ms
5,376 KB
testcase_17 AC 248 ms
5,376 KB
testcase_18 AC 90 ms
5,376 KB
testcase_19 AC 84 ms
5,376 KB
testcase_20 AC 183 ms
5,376 KB
testcase_21 AC 233 ms
5,376 KB
testcase_22 AC 162 ms
5,376 KB
testcase_23 AC 121 ms
5,376 KB
testcase_24 AC 45 ms
5,376 KB
testcase_25 AC 114 ms
5,376 KB
testcase_26 AC 98 ms
5,376 KB
testcase_27 AC 229 ms
5,376 KB
testcase_28 AC 60 ms
5,376 KB
testcase_29 AC 63 ms
5,376 KB
testcase_30 AC 283 ms
5,376 KB
testcase_31 AC 70 ms
5,376 KB
testcase_32 AC 32 ms
5,376 KB
testcase_33 AC 184 ms
5,376 KB
testcase_34 AC 229 ms
5,376 KB
testcase_35 AC 81 ms
5,376 KB
testcase_36 AC 224 ms
5,376 KB
testcase_37 AC 89 ms
5,376 KB
testcase_38 AC 210 ms
5,376 KB
testcase_39 AC 61 ms
5,376 KB
testcase_40 AC 280 ms
5,376 KB
testcase_41 AC 273 ms
5,376 KB
testcase_42 AC 278 ms
5,376 KB
testcase_43 AC 276 ms
5,376 KB
testcase_44 AC 294 ms
5,376 KB
testcase_45 AC 300 ms
5,376 KB
testcase_46 AC 287 ms
5,376 KB
testcase_47 AC 278 ms
5,376 KB
testcase_48 AC 279 ms
5,376 KB
testcase_49 AC 278 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint1000000007;
using ll=long long;
using pp=pair<mint,mint>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<(ll)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  ll t;cin>>t;
  rep(z,t){
    ll n,m,x;cin>>n>>m>>x;
    auto merge=[&](pp a,pp b)->pp{
      return {a.fi*b.fi+a.se*b.se,a.fi*b.se+a.se*b.fi};
    };
    pp e={1,m};
    auto f=[&](auto f,ll a)->pair<mint,mint>{
      if(a==1)return e;
      auto res=f(f,a/2);
      res=merge(res,res);
      if(a&1)res=merge(res,e);
      return res;
    };
    pp res=f(f,n);
    if(x==0)cout<<res.fi.val();
    else cout<<res.se.val();
    cout<<"\n";
  }
}
      
0