# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
307136 | syy | Nadan (COCI18_nadan) | C++17 | 1 ms | 384 KiB |
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;
#define int long long
int n, k, counter = 1, sum;
int32_t main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> k >> n;
for (int i = 0; i < n; i++) {
if (i + 1 == n) {
cout << k - sum;
continue;
}
cout << counter << "\n";
sum += counter;
counter++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |