赞
踩
package test;
import java.util.Scanner;
public class d {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(sc.hasNext()) {
int v1=sc.nextInt();//兔子
int v2=sc.nextInt();//乌龟
int t=sc.nextInt();//领先t米
int s=sc.nextInt();//停下来休息s秒
int l=sc.nextInt();//跑道长度
int time=0;//1 5
int l1=0;//50
int l2=0;//20
while(l1<l&&l2<l) {
if(l1-l2>=t) {
for(int i=0;i<s;i++) {
l2+=v2;time++;
if(l2>=l)break;}
}//100
else {l1=l1+v1*1;//50
l2=l2+v2*1;//20
time+=1;}
}
if(l1>l2)System.out.println("R");
else if(l1==l2)System.out.println("D");
else System.out.println("T");
System.out.println(time);
}
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。