#include <iostream>
#include <cstring>
#include <vector>
#include <set>
#include <map>
#include <sstream>
#include <cstdio>
#include <algorithm>
#include <stack>
#include <queue>
#include <cmath>
#include <iomanip>
#include <fstream>
//#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int INF = (1 << 30);
const ll inf = (1LL << 60LL);
const int maxn = 2e5 + 10;
int n, k, m;
int ret[maxn];
int main(int argc, const char * argv[]) {
ios_base::sync_with_stdio(false);
#ifndef LOCAL_DEBUG
ifstream cin("in.txt");
#endif
cin >> n >> k >> m;
memset(ret, 0, sizeof ret);
int i = 0;
bool R = true;
while(m > 0){
if(R){
ret[i] += min(m, k);
i ++;
if(i == n){
i = n - 1;
R = false;
}
m -= k;
}
else{
ret[i] += min(m, k);
i --;
if(i == -1){
i = 0;
R = true;
}
m -= k;
}
}
for(int i = 0; i < n; i ++){
cout << ret[i] << " ";
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
1144 KB |
Output isn't correct |
2 |
Incorrect |
3 ms |
1280 KB |
Output isn't correct |
3 |
Incorrect |
3 ms |
1280 KB |
Output isn't correct |
4 |
Incorrect |
3 ms |
1368 KB |
Output isn't correct |
5 |
Incorrect |
2 ms |
1480 KB |
Output isn't correct |
6 |
Incorrect |
3 ms |
1480 KB |
Output isn't correct |
7 |
Incorrect |
2 ms |
1480 KB |
Output isn't correct |
8 |
Incorrect |
2 ms |
1480 KB |
Output isn't correct |