Codeforces Round #327 (Div. 2) A Wizards' Duel (水题)

简单的物理问题,x = pt, y = l - qt。令x == y解出t,然后得出相遇位置。

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;


//#define LOCAL
int main()
{
#ifdef LOCAL
    freopen("in.txt","r",stdin);
#endif
    int l, p, q; scanf("%d%d%d",&l,&p,&q);
    double ans = (double)l/(p+q)*p;
    printf("%lf",ans);
    return 0;
}

 

posted @ 2015-10-25 22:52  陈瑞宇  阅读(151)  评论(0编辑  收藏  举报