2010年9月17日 星期五

ACM 10491 - Cows and Cars

#include <stdio.h>

double NCOWS, NCARS, NSHOW;
double DOORS, U, D;

int main()
{
while (scanf("%lf %lf %lf", &NCOWS, &NCARS ,&NSHOW) == 3)
{
DOORS = NCOWS + NCARS;
printf("%.5lf\n", ((NCOWS + NCARS - 1) * NCARS) / (DOORS * (DOORS - NSHOW - 1)));
}
return 0;
}


回目錄
回首頁

沒有留言 :

張貼留言

Related Posts Plugin for WordPress, Blogger...