比赛 NOIP模拟赛by mzx Day1 评测结果 WWWWWWWWWW
题目名称 为爱追寻 最终得分 0
用户昵称 BillAlen 运行时间 3.961 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-10-19 20:32:17
显示代码纯文本
#include <fstream>
using namespace std;
int main(){
    fstream in("loverfinding.in", ios::in), out("loverfinding.out", ios::out);
    long n, x, y, xt, yt, times = 0;
    in >> n >> x >> y >> xt >> yt;
    if(x == xt && y == yt) goto succret;
    for(long i = 0; i < n; ++i){
        long dx, dy;
        in >> dx >> dy;
        x += dx, y += dy;
        ++times;
        if(x == xt && y == yt) goto succret;
    }
    goto errorret;
errorret:
    out << "SingleDogMZX" << endl;
    return 0;
succret:
    out << times << endl;
    return 0;
}