結果
| 問題 | No.727 仲介人moko |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-10-16 00:18:50 |
| 言語 | C++17(gcc12) (gcc 12.4.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 15 ms / 1,000 ms |
| コード長 | 2,011 bytes |
| 記録 | |
| コンパイル時間 | 824 ms |
| コンパイル使用メモリ | 109,592 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-03-08 21:16:18 |
| 合計ジャッジ時間 | 1,968 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 25 |
ソースコード
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>
static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;
template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;
template <ll M = MOD> struct modint {
ll val;
modint(const ll x = 0) : val(x) {
val = x;
while(val < 0) val += M;
while(val > M) val -= M;
}
modint operator+(const modint a) const { return modint(*this) += a; }
modint operator-(const modint a) const { return modint(*this) -= a; }
modint operator*(const modint a) const { return modint(*this) *= a; }
modint operator/(const modint a) const { return modint(*this) /= a; }
modint operator-() const { return modint(M-val); }
modint inv() const {
ll u = 1, v = 0, s = 0, t = 1, m = M, x = val;
while (x) {ll q = m/x; swap(s -= q*u, u); swap(t -= q*v, v); swap(m -= q*x, x); }
if(s < 0) s += M;
return modint(s);
}
modint pow(ll n) const {
ll u = 1, xx = val;
while (n > 0){ if (n&1) u = u * xx % M; xx = xx * xx % M; n >>= 1; }
return modint(u);
}
modint& operator+=(const modint a){ val += a.val; if(val >= M) val -= M; return *this; }
modint& operator-=(const modint a){ val -= a.val; if(val < 0) val += M; return *this; }
modint& operator*=(const modint a){ val = val * a.val % M; return *this; }
modint& operator/=(const modint a){ val = val * a.inv().val % M; return *this;}
modint& operator=(const int& x){
val = x;
while(val < 0) val += M;
while(val > M) val -= M;
return *this;
}
};
using mint = modint<MOD>;
int main() {
int n;
cin >> n;
mint ans = 1;
for (int i = 1; i <= 2*n; ++i) {
ans *= mint((i+1)/2);
if(i&1) ans *= mint(i);
}
cout << ans.val << "\n";
return 0;
}