結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
14,720 KB
testcase_01 AC 15 ms
14,720 KB
testcase_02 AC 14 ms
14,592 KB
testcase_03 AC 15 ms
14,464 KB
testcase_04 AC 15 ms
14,592 KB
testcase_05 AC 15 ms
14,464 KB
testcase_06 AC 15 ms
14,720 KB
testcase_07 AC 15 ms
14,592 KB
testcase_08 AC 16 ms
14,464 KB
testcase_09 AC 15 ms
14,592 KB
testcase_10 AC 15 ms
14,592 KB
testcase_11 AC 14 ms
14,592 KB
testcase_12 AC 15 ms
14,592 KB
testcase_13 AC 15 ms
14,720 KB
testcase_14 AC 15 ms
14,592 KB
testcase_15 AC 14 ms
14,720 KB
testcase_16 AC 15 ms
14,592 KB
testcase_17 AC 15 ms
14,592 KB
testcase_18 AC 15 ms
14,592 KB
testcase_19 AC 15 ms
14,720 KB
testcase_20 AC 15 ms
14,592 KB
testcase_21 AC 15 ms
14,592 KB
testcase_22 AC 15 ms
14,592 KB
testcase_23 AC 15 ms
14,720 KB
testcase_24 AC 15 ms
14,720 KB
testcase_25 AC 15 ms
14,592 KB
testcase_26 AC 16 ms
14,592 KB
testcase_27 AC 16 ms
14,592 KB
testcase_28 AC 15 ms
14,720 KB
testcase_29 AC 17 ms
14,592 KB
testcase_30 AC 16 ms
14,720 KB
testcase_31 AC 17 ms
14,464 KB
testcase_32 AC 18 ms
14,464 KB
testcase_33 AC 18 ms
14,592 KB
testcase_34 AC 19 ms
14,464 KB
testcase_35 AC 24 ms
14,592 KB
testcase_36 AC 25 ms
14,464 KB
testcase_37 AC 25 ms
14,592 KB
testcase_38 AC 40 ms
14,720 KB
testcase_39 AC 41 ms
14,464 KB
testcase_40 AC 42 ms
14,464 KB
testcase_41 AC 63 ms
14,592 KB
testcase_42 AC 60 ms
14,464 KB
testcase_43 AC 70 ms
14,464 KB
testcase_44 AC 78 ms
14,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:50:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=]
   50 |         printf("%d\n",ans);
      |                 ~^    ~~~
      |                  |    |
      |                  int  ll {aka long long int}
      |                 %lld
main.cpp:35:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   35 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;


ll fact[15000005];

ll extgcd(ll a,ll b,ll& x,ll& y){
	ll d=a;
	if(b!=0LL){
		d=extgcd(b,a%b,y,x);
		y-=(a/b)*x;
	}else{
		x=1;
		y=0;
	}
	return d;
}

ll mod_inverse(ll a,ll m){
	ll x,y;
	extgcd(a,m,x,y);
	return (m+x%m)%m;
}


int main(void){
	fact[0]=1;
	for(ll i=1;i<=1400000;i++){
		fact[i]=fact[i-1]*i%MOD;
	}
	int n;
	scanf("%d",&n);
	ll ans=0;
	for(int i=0;i*2<=n;i++){
		if(i==0)ans++;
		if(i==1){
			ans+=n;
		}
		if(i>=2){
			ll val=fact[n+i*2-1];
			val=val*mod_inverse(fact[n+i],MOD)%MOD;
			val=(ll)val*n%MOD;
			val=val*mod_inverse(fact[i],MOD)%MOD;
			ans=(ans+val)%MOD;
		}
	}
	printf("%d\n",ans);
	return 0;
}
0