0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 07:25:25 +00:00
OI-codes/AcWing/279/279.cpp

29 lines
421 B
C++
Raw Normal View History

#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;
}