結果

問題 No.660 家を通り過ぎないランダムウォーク問題
ユーザー tecchaxntecchaxn
提出日時 2018-03-02 23:50:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 924 bytes
コンパイル時間 1,226 ms
コンパイル使用メモリ 158,964 KB
実行使用メモリ 15,224 KB
最終ジャッジ日時 2024-06-22 19:00:37
合計ジャッジ時間 3,338 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
15,156 KB
testcase_01 AC 16 ms
15,092 KB
testcase_02 AC 17 ms
14,952 KB
testcase_03 AC 17 ms
15,216 KB
testcase_04 AC 16 ms
15,060 KB
testcase_05 AC 18 ms
15,124 KB
testcase_06 AC 17 ms
15,200 KB
testcase_07 AC 18 ms
14,928 KB
testcase_08 AC 17 ms
15,124 KB
testcase_09 AC 17 ms
15,052 KB
testcase_10 AC 17 ms
15,188 KB
testcase_11 AC 17 ms
14,984 KB
testcase_12 AC 17 ms
15,032 KB
testcase_13 AC 19 ms
15,088 KB
testcase_14 AC 17 ms
15,004 KB
testcase_15 AC 17 ms
14,920 KB
testcase_16 AC 17 ms
15,036 KB
testcase_17 AC 17 ms
15,144 KB
testcase_18 AC 18 ms
15,044 KB
testcase_19 AC 18 ms
15,168 KB
testcase_20 AC 18 ms
15,032 KB
testcase_21 AC 17 ms
15,092 KB
testcase_22 AC 17 ms
14,992 KB
testcase_23 AC 17 ms
15,116 KB
testcase_24 AC 17 ms
15,196 KB
testcase_25 AC 17 ms
15,192 KB
testcase_26 AC 18 ms
14,992 KB
testcase_27 AC 18 ms
15,080 KB
testcase_28 AC 19 ms
15,020 KB
testcase_29 AC 19 ms
15,176 KB
testcase_30 AC 19 ms
15,056 KB
testcase_31 AC 18 ms
15,036 KB
testcase_32 AC 17 ms
15,152 KB
testcase_33 AC 18 ms
15,084 KB
testcase_34 AC 17 ms
15,040 KB
testcase_35 AC 17 ms
15,224 KB
testcase_36 AC 17 ms
15,124 KB
testcase_37 AC 16 ms
15,100 KB
testcase_38 AC 17 ms
14,996 KB
testcase_39 AC 18 ms
15,172 KB
testcase_40 AC 17 ms
15,012 KB
testcase_41 AC 17 ms
14,904 KB
testcase_42 AC 17 ms
15,108 KB
testcase_43 AC 17 ms
15,144 KB
testcase_44 AC 18 ms
14,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0;i<(n);i++)
#define FOR(i,a,b) for(int i=(a);i<(b);i++)
#define ALL(v) (v).begin(),(v).end()
#define int long long
#define INF 1e18
using namespace std;

//-----------------------------------------------------------------------

const int mod=1e9+7;
const int SIZE=500000;
int fact[SIZE],inv[SIZE],ifact[SIZE];

void make()
{
    inv[1]=fact[0]=fact[1]=ifact[0]=ifact[1]=1;
    for(int i=2;i<SIZE;i++){
        inv[i]=inv[mod%i]*(mod-mod/i)%mod;
        fact[i]=fact[i-1]*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()
{
    make();
    int N; cin>>N;
    int ans=0;
    int x=0,y=N;
    while(x+y<=2*N){
        int a=comb(x+y-1,x);
        int b=comb(x+y-1,y);
        ans+=(a-b+mod);
        ans%=mod;
        x++,y++;
    }
    cout<<ans<<endl;
 
}
0