結果

問題 No.895 MESE
ユーザー tekihei2317tekihei2317
提出日時 2019-09-28 08:59:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 16 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 1,405 ms
コンパイル使用メモリ 169,164 KB
実行使用メモリ 12,764 KB
最終ジャッジ日時 2024-10-01 13:06:32
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
10,368 KB
testcase_01 AC 12 ms
10,368 KB
testcase_02 AC 12 ms
10,368 KB
testcase_03 AC 11 ms
10,496 KB
testcase_04 AC 12 ms
10,368 KB
testcase_05 AC 12 ms
10,368 KB
testcase_06 AC 11 ms
10,368 KB
testcase_07 AC 12 ms
10,368 KB
testcase_08 AC 12 ms
10,496 KB
testcase_09 AC 12 ms
10,368 KB
testcase_10 AC 12 ms
10,496 KB
testcase_11 AC 12 ms
10,496 KB
testcase_12 AC 12 ms
10,368 KB
testcase_13 AC 14 ms
11,648 KB
testcase_14 AC 14 ms
11,648 KB
testcase_15 AC 15 ms
11,776 KB
testcase_16 AC 13 ms
11,520 KB
testcase_17 AC 14 ms
11,520 KB
testcase_18 AC 16 ms
12,544 KB
testcase_19 AC 15 ms
12,416 KB
testcase_20 AC 15 ms
12,416 KB
testcase_21 AC 16 ms
12,544 KB
testcase_22 AC 16 ms
12,416 KB
testcase_23 AC 16 ms
12,584 KB
testcase_24 AC 16 ms
12,640 KB
testcase_25 AC 16 ms
12,544 KB
testcase_26 AC 15 ms
12,544 KB
testcase_27 AC 16 ms
12,640 KB
testcase_28 AC 16 ms
12,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }

const int mod=1e9+7;
const int sz=300010;

int fact[sz],inv[sz],ifact[sz];
void make(){
    fact[0]=fact[1]=inv[1]=ifact[0]=ifact[1]=1;
    for(int i=2;i<sz;i++){
        fact[i]=fact[i-1]*i%mod;
        inv[i]=inv[mod%i]*(mod-mod/i)%mod;
        ifact[i]=ifact[i-1]*inv[i]%mod;
    }
}
int comb(int n,int k){
    if(n<k) return 0;
    return fact[n]*ifact[k]%mod*ifact[n-k]%mod;
}

signed main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);

    make();

    int a,b,c; cin>>a>>b>>c;
    int N=a+b+c;
    vector<int> two(N+1);
    two[0]=1;
    for(int i=0;i<N;i++){
        two[i+1]=two[i]*2%mod;
    }

    int ans=0;
    for(int i=N-2;i>=0;i--){
        if(a<N-i-1) break;
        ans+=(two[i]-1)*comb(i-1,c-1)%mod*comb(i-c,b-1);
        ans%=mod;
    }
    cout<<ans<<endl;
    return 0;
}
0