# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
868155 | 12345678 | Nadan (COCI18_nadan) | C++17 | 1 ms | 348 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 main()
{
cin.tie(NULL)->sync_with_stdio(false);
int n, k, sm=0;
cin>>n>>k;
for (int i=0; i<k-1; i++) cout<<i+1<<'\n', sm+=i+1;
cout<<n-sm;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |