码迷,mamicode.com
首页 > 其他好文 > 详细

CF1304A Two Rabbits

时间:2020-02-25 09:37:51      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:兔子   cpp   https   clu   时间   test   its   ref   statement   

A. Two Rabbits

原题

Problem Restatement

两个兔子以恒定速度相向而行,求相遇时间?若无法在整时间相遇,输出\(-1\)

Solution

相遇问题,距离除以总速度为时间,看时间是否为整数即可。

Code

#include <bits/stdc++.h>

void solve(){
    int x,y,a,b;
    scanf("%d %d %d %d", &x, &y, &a, &b);
    if((y-x)%(a+b)==0)
        printf("%d\n", (y-x)/(a+b));
    else printf("-1\n");
}

int main(){
    int T=1;
    scanf("%d", &T);
    while(T--){
        solve();
    }
    return 0;
}

CF1304A Two Rabbits

标签:兔子   cpp   https   clu   时间   test   its   ref   statement   

原文地址:https://www.cnblogs.com/leachim/p/12359792.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!