记录编号 |
200710 |
评测结果 |
AAAWWWWWWA |
题目名称 |
Yukari |
最终得分 |
40 |
用户昵称 |
Malvo |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.828 s |
提交时间 |
2015-10-29 12:35:48 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include<cstdio>
#include<cmath>
int k[10000],p;
int main()
{
freopen("camera.in","r",stdin);
freopen("camera.out","w",stdout);
int x1,y1,x2,y2,fx,fy,x,y,u,v,ans,t;
int max=0,i,n,ans2;
scanf("%d %d %d %d %d",&n,&x1,&y1,&x2,&y2);
for(i=1;i<=n;i++)
{
scanf("%d %d %d %d",&x,&y,&u,&v);
t=0;
while(t<=1000)
{
if(x>=x1&&y>=y1&&x<=x2&&y<=y2)
{
p=t*10;
k[p]++;
if(k[p]>max){max=k[p];ans=t;}
}
x+=u;
y+=v;
t++;
}
}
ans2=ans;
printf("%d",ans2);
return 0;
}