結果
問題 | No.523 LED |
ユーザー |
|
提出日時 | 2017-06-02 22:30:44 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 163 ms / 2,000 ms |
コード長 | 927 bytes |
コンパイル時間 | 1,519 ms |
コンパイル使用メモリ | 166,196 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 22:30:19 |
合計ジャッジ時間 | 3,226 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <bits/stdc++.h>using namespace std;using ll = long long;#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))#define all(x) (x).begin(),(x).end()#define pb push_back#define fi first#define se second#define dbg(x) cout<<#x" = "<<((x))<<endltemplate<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;}template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;}const ll mod=1e9+7;ll mod_pow(ll x, ll n){ll pw[32]={};pw[0]=x;for(int i=1; i<32; ++i) pw[i]=(pw[i-1]*pw[i-1])%mod;ll ret=1;rep(i,32)if(n>>i&1) (ret*=pw[i])%=mod;return ret;}ll mod_inv(ll x){return mod_pow(x,mod-2);}int main(){ll n;cin >>n;ll ans=1;for(int i=2; i<=2*n; ++i) (ans*=i)%=mod;rep(i,n) (ans*=mod_inv(2))%=mod;cout << ans << endl;return 0;}