mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 11:18:47 +00:00
29 lines
421 B
C++
29 lines
421 B
C++
#include <iostream>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
const int N = 4005;
|
|
const long long mod = 2147483648;
|
|
|
|
int n;
|
|
long long f[N];
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
|
|
cin >> n;
|
|
|
|
f[0] = 1;
|
|
for (int i = 1; i <= n; i++) {
|
|
for (int j = i; j <= n; j++) {
|
|
f[j] = (f[j] + f[j - i]) % mod;
|
|
}
|
|
}
|
|
|
|
cout << f[n] - 1 << endl;
|
|
|
|
return 0;
|
|
}
|