結果
問題 |
No.523 LED
|
ユーザー |
![]() |
提出日時 | 2017-06-24 21:43:24 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 73 ms / 2,000 ms |
コード長 | 713 bytes |
コンパイル時間 | 1,604 ms |
コンパイル使用メモリ | 167,212 KB |
実行使用メモリ | 81,716 KB |
最終ジャッジ日時 | 2024-10-04 03:05:22 |
合計ジャッジ時間 | 2,888 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
ソースコード
#include <bits/stdc++.h> using namespace std; //-------------------------------------------- #define FOR(i,a,b) for(int i=(a);i<(b);i++) #define RFOR(i,a,b) for(int i=(b)-1;i>=(a);i--) #define REP(i,n) FOR(i,0,n) #define RREP(i,n) RFOR(i,0,n) #define LL long long #define INF INT_MAX/3 //-------------------------------------------- const double EPS = 1e-14; const double PI = acos(-1.0); //-------------------------------------------- int n; LL arr[10000000]; void cal(int n) { arr[0] = 1; FOR (i, 1, n + 1) { arr[i] = ((((LL)(2 * i - 1) * (LL)(2 * i - 2) / 2 + (LL)(2 * i - 1)) % 1000000007) * arr[i - 1]) % 1000000007; } } int main(){ scanf("%d",&n); cal(n); printf("%lld\n",arr[n]); }