#include <iostream>
using namespace std;
int ts[200000+9];
int n;
long long k, m;
int main(){
cin >> n >> k >> m;
for(int i=0;i<n;i++) ts[i]=0;
int idx=0;
bool forw=true;
while(true){
if(idx >= n){
idx = n-2;
forw = false;
continue;
}
if(idx < 0){
idx = 1;
forw = true;
continue;
}
if(k > 0 && m > 0){
ts[idx] += ( m >= k ) ? k : m;
m-=( m >= k ) ? k : m;
idx += forw == true ? 1 : -1;
} else break;
}
for(int i=0;i<n;i++){
cout << ts[i] << " ";
}
cout << endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
504 KB |
Output is correct |
2 |
Correct |
2 ms |
252 KB |
Output is correct |
3 |
Correct |
16 ms |
1532 KB |
Output is correct |
4 |
Correct |
16 ms |
1532 KB |
Output is correct |
5 |
Execution timed out |
1074 ms |
256 KB |
Time limit exceeded |
6 |
Execution timed out |
1034 ms |
376 KB |
Time limit exceeded |
7 |
Execution timed out |
1075 ms |
1144 KB |
Time limit exceeded |
8 |
Execution timed out |
1074 ms |
1144 KB |
Time limit exceeded |