# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
165339 | Asag | Nadan (COCI18_nadan) | C++14 | 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;
int k, n, sum;
int sz;
int main () {
scanf ("%d%d", &k, &n);
while (n > 1) {
printf ("%d\n", ++ sz);
sum += sz;
n --;
}
printf ("%d", k - sum);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |