# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
385250 | penguinhacker | Nadan (COCI18_nadan) | C++14 | 2 ms | 364 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;
#define ll long long
#define ar array
int n, k;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> k >> n;
for (int i = 0; i < n - 1; ++i)
cout << "1\n";
cout << k - n + 1;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |