結果
問題 | No.554 recurrence formula |
ユーザー | nksk38 |
提出日時 | 2017-08-11 23:12:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 907 bytes |
コンパイル時間 | 843 ms |
コンパイル使用メモリ | 80,724 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-12 21:46:24 |
合計ジャッジ時間 | 6,118 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 10 ms
5,248 KB |
testcase_11 | AC | 82 ms
5,248 KB |
testcase_12 | AC | 59 ms
5,248 KB |
testcase_13 | AC | 248 ms
5,248 KB |
testcase_14 | AC | 81 ms
5,248 KB |
testcase_15 | AC | 295 ms
5,248 KB |
testcase_16 | AC | 359 ms
5,248 KB |
testcase_17 | AC | 299 ms
5,248 KB |
testcase_18 | AC | 141 ms
5,248 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
ソースコード
#include<cstdio> #include<iostream> #include<algorithm> #include<string> #include<queue> #include<vector> #include<functional> #include<cmath> #include<map> #include<stack> #include<set> #include<numeric> #include<limits> #include<iterator> #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() using namespace std; typedef long long ll; typedef pair<int, int> pi; typedef pair<ll, ll> pl; typedef pair<ll, char> plc; ll mod = ll(1e9 + 7); ll memo[100010]; int n; int dfs(int x, int m) { ll sum = 0; if (x == 1)return 1; if (memo[x])return memo[x]; if (x % 2 == 0) { for (int i = 1; i <= m- 1; i += 2){ sum += dfs(i,i); sum %= mod; } return memo[m] = (sum * m) % mod; } else { for (int i = 2; i <= m - 1; i += 2) { sum += dfs(i,i); sum %= mod; } return memo[m] = (sum * m) % mod; } } int main() { cin >> n; cout << dfs(n,n) << endl; return 0; }