# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
3951 | joonas | Jogging (kriii1_J) | C++98 | 1000 ms | 2004 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <stdio.h>
#include <cmath>
int Nx[100500], Ny[100500], M;
int main(){
int i,j, n, m;
scanf("%d %d ", &n, &m);
for(i=0; i < n; ++i) scanf("%d %d ", &Nx[i], &Ny[i]);
for(i=0; i < m; ++i){
scanf("%d", &M);
double rad=0.0;
for(j=0; j < n; ++j){
if( Nx[j] > M ){
double dw = Nx[j]-M;
double ds = sqrt((dw*dw)+(Ny[j]*Ny[j]));
double _r = asin(Ny[j]/ds);
if( _r > rad ) rad = _r;
} else if( j > n/2 ) break;
else break;
}
printf("%.7f\n", rad);
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |