# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
899492 |
2024-01-06T10:04:00 Z |
joccccca |
Nadan (COCI18_nadan) |
C++14 |
|
60 ms |
7280 KB |
#include <bits/stdc++.h>
#define int long long
using namespace std;
int b[1000001];
int cnt[1000001];
signed main()
{
int n,k;
cin >> n >> k;
int br=0;
for(int i=1; i < n; i++){
br+=i;
cout<<i<<"\n";
}
if(k-br<=0)cout<<1<<"\n";
else cout<<k-br;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
6 |
Incorrect |
2 ms |
480 KB |
Output isn't correct |
7 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
8 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
9 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
10 |
Incorrect |
60 ms |
7280 KB |
Output isn't correct |