# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
170331 | ngmh | Nadan (COCI18_nadan) | C++11 | 2 ms | 376 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;
long long k, n, each;
int main(){
cin >> k >> n;
k -= (n*(n+1))/2;
each = k/n;
for(int i = 1; i < n; i++){
cout << i+each << "\n";
k -= each;
}
cout << k+n;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |