# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
81735 | mayhoubsaleh | Nadan (COCI18_nadan) | C++14 | 3 ms | 628 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>
#define ll long long
#define pb push_back
#define IOS ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
int n,k;
int main()
{
cin>>k>>n;
k-=n;
for(int i=0;i<n-1;i++){
cout<<i+1<<endl;
k-=i;
}
cout<<k+1;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |