# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
825090 |
2023-08-14T14:20:02 Z |
dijbkr |
Nadan (COCI18_nadan) |
C++14 |
|
1 ms |
320 KB |
#include<bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
int n,k;
cin >> n >> k;
if (k==1) {
cout << n;
} else {
int res=0;
for (int i=1; i<k; i++) {
res+=i;
cout << i << endl;
}
cout << n-res;
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Correct |
1 ms |
212 KB |
Output is correct |
6 |
Correct |
1 ms |
212 KB |
Output is correct |
7 |
Correct |
1 ms |
320 KB |
Output is correct |
8 |
Correct |
1 ms |
212 KB |
Output is correct |
9 |
Correct |
1 ms |
212 KB |
Output is correct |
10 |
Correct |
1 ms |
212 KB |
Output is correct |