Submission #1037995

#TimeUsernameProblemLanguageResultExecution timeMemory
1037995MrPavlitoNadan (COCI18_nadan)C++17
50 / 50
1 ms456 KiB
#include <bits/stdc++.h>
#define int long long
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(),(x).end()
#define fi first
#define sc second
#define endl "\n"
#define pii pair<int,int>

using namespace std;

const int MAXN = 1e5+5;
const int mod7 = 1e9+7;
const long long inf = 1e18;

signed main()
{
    ios_base::sync_with_stdio(false),cin.tie(0), cout.tie(0);
    int tt=1;
    //cin >> tt;
    while(tt--)
    {
        int n,k;
        cin >> k >> n;
        for(int i=1; i<=n-1; i++)
        {
            k-=i;
            cout << i << endl;
        }
        cout << k << endl;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...