This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
vector<int> v;
void recur(int z, int n, int s) {
v.push_back(s + n - 1);
for (int d = z; d * d <= n; ++d)
if (n % d == 0)
recur(d, n / d, s + d - 1);
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n; cin >> n; recur(2, n, 0);
sort(begin(v), end(v)); v.erase(begin(v), end(v));
cout << v.size() << '\n';
for (int x : v) cout << x << ' ';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |