div2 620 A

A

设所需要的时间为 \(t\),两只兔子之间的距离为 \(c ur\)

\(cut = (y-bt) - (x+at)\)

\(t = (y-x)/(a+b)\)

#include <bits/stdc++.h>
using namespace std;
int main() {
    int x,y,t,a,b,ans;
    cin >> t;
    while(t --) {
        cin >> x >> y >> a >> b;
        if((y - x) % (a + b) == 0) cout << (y - x) / (a + b) << endl;
        else cout << "-1\n";
    }
    return 0;
}
上一篇:硬件相关 CPU 显卡


下一篇:Codeforces Round #620 (Div. 2)F2