Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
40270 安一宸 公鸡打鸣 C++ 解答错误 11 0 MS 244 KB 429 2022-05-28 14:42:09

Tests(1/9):


#include<bits/stdc++.h> using namespace std; int a,x,b,y,k,ai,xi,bi,yi,ans,f=1; int main(){ cin>>x>>y>>k; for(int i=1;i<=k;i++){ cin>>ai>>xi>>bi>>yi; ans++; if(ai==1){ x+=xi; }else{ x-=xi; } if(bi==1){ y+=yi; }else{ y-=yi; } if(x<0&&y<0){ break; }else{ if(x==y){ f=2; break; } } } if(f==2){ cout<<ans; }else{ cout<<"-1"; } return 0; }


测评信息: