# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
300039 |
2020-09-16T07:44:42 Z |
ryuku1110 |
Nadan (COCI18_nadan) |
C++14 |
|
1 ms |
384 KB |
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
typedef long long ll;
int k, n;
int main() {
//freopen(".INP", "r", stdin);
//freopen(".OUT", "w", stdout);
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
cin >> k >> n;
int tmp = 0;
for (int i = 1; i < n; ++ i) {
cout << i << endl;
tmp += i;
}
cout << k - tmp;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
384 KB |
Output is correct |
2 |
Correct |
0 ms |
384 KB |
Output is correct |
3 |
Correct |
0 ms |
384 KB |
Output is correct |
4 |
Correct |
1 ms |
384 KB |
Output is correct |
5 |
Correct |
0 ms |
384 KB |
Output is correct |
6 |
Correct |
1 ms |
384 KB |
Output is correct |
7 |
Correct |
1 ms |
384 KB |
Output is correct |
8 |
Correct |
1 ms |
384 KB |
Output is correct |
9 |
Correct |
1 ms |
384 KB |
Output is correct |
10 |
Correct |
1 ms |
384 KB |
Output is correct |