結果

問題 No.727 仲介人moko
ユーザー ahe100ahe100
提出日時 2019-02-23 19:00:39
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 49 ms / 1,000 ms
コード長 1,007 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 81,012 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-14 04:55:16
合計ジャッジ時間 2,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 22 ms
6,816 KB
testcase_15 AC 36 ms
6,820 KB
testcase_16 AC 19 ms
6,820 KB
testcase_17 AC 23 ms
6,816 KB
testcase_18 AC 17 ms
6,816 KB
testcase_19 AC 43 ms
6,816 KB
testcase_20 AC 24 ms
6,820 KB
testcase_21 AC 13 ms
6,816 KB
testcase_22 AC 11 ms
6,816 KB
testcase_23 AC 47 ms
6,820 KB
testcase_24 AC 49 ms
6,816 KB
testcase_25 AC 32 ms
6,820 KB
testcase_26 AC 38 ms
6,816 KB
testcase_27 AC 32 ms
6,816 KB
testcase_28 AC 2 ms
6,820 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