# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
472149 |
2021-09-13T08:20:17 Z |
MamdouhN |
Nadan (COCI18_nadan) |
C++14 |
|
1 ms |
204 KB |
#include<bits/stdc++.h>
using namespace std;
//#define int long long
#define endl "\n"
int main()
{
int n,k;
cin>>k>>n;
k-=(n*(n+1))/2;
int extra=k%n;
int addtoall=(k-(k%n))/n;
for(int i=0;i<n;i++)
{
cout<<i+1+addtoall+(i==n-1?extra:0)<<endl;
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
3 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
6 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
7 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
8 |
Correct |
0 ms |
204 KB |
Output is correct |
9 |
Correct |
1 ms |
204 KB |
Output is correct |
10 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |