結果

問題 No.727 仲介人moko
ユーザー ahe100ahe100
提出日時 2019-02-23 19:00:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 51 ms / 1,000 ms
コード長 1,007 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 04:27:21
合計ジャッジ時間 2,120 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 38 ms
5,376 KB
testcase_16 AC 20 ms
5,376 KB
testcase_17 AC 24 ms
5,376 KB
testcase_18 AC 17 ms
5,376 KB
testcase_19 AC 43 ms
5,376 KB
testcase_20 AC 24 ms
5,376 KB
testcase_21 AC 13 ms
5,376 KB
testcase_22 AC 12 ms
5,376 KB
testcase_23 AC 48 ms
5,376 KB
testcase_24 AC 51 ms
5,376 KB
testcase_25 AC 33 ms
5,376 KB
testcase_26 AC 41 ms
5,376 KB
testcase_27 AC 33 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<cstring>
#include<vector>
#include<queue>
#include<stack>
#include<algorithm>
#include<cmath>
#include<climits>
#include<string>
#include<set>
#include<unordered_set>
#include<numeric>
#include<map>
#include<iostream>
using namespace std;
#define rep(i,n) for(int i = 0;i<((int)(n));i++)
#define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++)
#define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--)
#define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--)
typedef long long ll;
typedef pair<ll, ll> mp;
ll mod = 1e9+7;
ll inf = 1e18;

/*
AC
別解(本質は同じ)
売り手と買い手を対応:N要素→N要素の全単射の個数:N!
2N人の並び替え:(2N)!
売り手ー買い手、買い手ー売り手の2つの順番があるので、2^Nで割る
*/

int main(void){
	ll n,ans,a=1,b=1,c=1;
	cin>>n;
	reg(i,1,n){
		a = (a*i)%mod;
	}
	reg(i,1,2*n){
		if(i%2==0){
			b = (b*i/2)%mod;
		}else{
			b = (b*i)%mod;
		}
	}
	cout<<(a*b)%mod<<endl;
	return 0;
}
0