結果

問題 No.523 LED
ユーザー aa
提出日時 2018-06-11 02:57:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 2,159 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 94,752 KB
実行使用メモリ 316,044 KB
最終ジャッジ日時 2023-09-13 02:51:51
合計ジャッジ時間 9,738 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 286 ms
315,848 KB
testcase_01 AC 285 ms
315,908 KB
testcase_02 AC 286 ms
315,836 KB
testcase_03 AC 284 ms
315,864 KB
testcase_04 AC 285 ms
315,912 KB
testcase_05 AC 338 ms
315,840 KB
testcase_06 AC 285 ms
315,856 KB
testcase_07 AC 285 ms
315,936 KB
testcase_08 AC 285 ms
315,844 KB
testcase_09 AC 285 ms
315,908 KB
testcase_10 AC 285 ms
315,832 KB
testcase_11 AC 283 ms
316,040 KB
testcase_12 AC 284 ms
315,840 KB
testcase_13 AC 295 ms
315,980 KB
testcase_14 AC 285 ms
315,864 KB
testcase_15 AC 288 ms
315,916 KB
testcase_16 AC 285 ms
316,044 KB
testcase_17 AC 285 ms
315,912 KB
testcase_18 AC 340 ms
315,836 KB
testcase_19 AC 304 ms
315,844 KB
testcase_20 AC 300 ms
315,848 KB
testcase_21 AC 324 ms
315,828 KB
testcase_22 AC 329 ms
315,840 KB
testcase_23 AC 330 ms
315,840 KB
testcase_24 AC 286 ms
315,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <climits>
#include <cmath>
#include <complex>
#include <map>
#include <set>
#include <vector>
#include <stack>
#include <queue>
#include <bitset>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cassert>
#include <iomanip>
using namespace std;

#define Rep(b, e, i) for(int i = b; i <= e; i++)
#define Repr(e, b, i) for(int i = e; i >= b; i--)
#define rep(n, i) Rep(0, n-1, i)
#define repr(n, i) Repr(n-1, 0, i)
#define all(v) (v).begin(), (v).end()
#define pb(v) push_back(v)
#define uniq(v) (v).erase(unique(all(v)),(v).end())
#define bitcnt(x) __builtin_popcount(x)
#define fst first
#define snd second
#define Pqaz(T) priority_queue<T,vector<T>,greater<T>>
#define Pqza(T) priority_queue<T>
#define put(x) cout << x;
#define putsp(x) cout << x << ' ';
#define putln(x) cout << x << endl;
#define ENJYU std::ios::sync_with_stdio(false);std::cin.tie(0);

typedef long long ll;
typedef pair<ll, ll> llP;
typedef pair<int, int> intP;
typedef complex<double> comp;

//vector の中身を出力
template <class T>ostream &operator<<(ostream &o,const vector<T>&v)
{o<<"{";for(int i=0;i<(int)v.size();i++)o<<(i>0?", ":"")<<v[i];o<<"}";return o;}

const int MAX = 20000020;
const ll MOD = 1000000007;

//階乗とその逆元
ll fac[MAX+1],facInv[MAX+1];

ll power(ll e, ll x){ //e^x % MOD
	if (x == 0) return 1LL;
	if (x % 2 != 0) return ((power(e, x-1) * e) % MOD);
	ll temp = power(e, x / 2);
	return (temp * temp) % MOD;
}

ll nck(ll n, ll k){
	if (!(n >= k && k >= 0)) return 0;
	ll temp = (fac[n] * facInv[n-k]) % MOD;
	return ((temp * facInv[k]) % MOD);
}

void fact(void){
	//階乗とその逆元
	fac[0] = facInv[0] = 1; //0! = 1
	//(x!)^(-1) ≡ (x!)^(p-2) (mod p)
	Rep(1, MAX, i) fac[i] = (fac[i-1] * i) % MOD;
	facInv[MAX] = power(fac[MAX], MOD-2);
	Rep(1, MAX-1, i) facInv[MAX-i] = (facInv[MAX-i+1] * (MAX-i+1)) % MOD;
}



void solve(void){
	ll N;
	cin >> N;
	fact();
	ll ans = fac[N*2];

	rep(N, i)
	{
		ans *= facInv[2];
		ans %= MOD;
	}

	cout << ans <<endl;
}

int main(void){
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0