Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
40723 | 尹翊泽 | 公鸡打鸣 | C++ | 通过 | 100 | 105 MS | 252 KB | 387 | 2022-06-04 10:28:45 |
#include<bits/stdc++.h> using namespace std; int k,x,y,m,n,s,j; int main(){ cin>>x>>y>>k; if(x==y){ cout<<"0"; return 0; } for(int i=1;i<=k;i++){ cin>>s>>m>>j>>n; if(s==1) x+=m; if(s==-1) x-=m; if(j==1) y+=n; if(j==-1) y-=n; if(x<=0&&y<=0) { x=0; y=0; } if(x==y){ cout<<i; return 0; } } if(x!=y) cout<<"-1"; return 0; }