Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
40216 | 邢逸轩 | 公鸡打鸣 | C++ | 通过 | 100 | 40 MS | 248 KB | 366 | 2022-05-28 14:17:26 |
#include<bits/stdc++.h> using namespace std; int x,y,k; int a,ax,b,bx; int main(){ cin>>x>>y>>k; if(x==y){ cout<<0; return 0; } for(int i=1;i<=k;i++){ cin>>a>>ax>>b>>bx; if(a>0) x+=ax; else x-=ax; if(b>0) y+=bx; else y-=bx; if(x<=0) x=0; if(y<=0) y=0; if(x==y){ cout<<i; return 0; } } cout<<-1; return 0; }