#include <bits/stdc++.h>
using namespace std;
int main() {
int n, q, d;
cin >> n >> q >> d;
int minn = 1e9, maxx = 0;
for ( int i = 0; i < n; i++ ) {
int p;
cin >> p;
minn = min( minn, p );
maxx = max( maxx, p );
}
for ( int i = 0; i < q; i++ ) {
int p;
cin >> p;
minn = min( minn, p );
maxx = max( maxx, p );
long long ans = max( 0LL, ((long long)d * (n + i) - (maxx - minn)) );
cout << ans / 2;
if ( ans % 2 == 1 )
cout << ".5";
cout << " ";
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
312 ms |
2644 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
312 ms |
2644 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |