【深基2.例12】上学迟到
一、题目描述
学校和 yyy 的家之间的距离为 s s s 米,而 yyy 以 v v v 米每分钟的速度匀速走向学校。
在上学的路上,yyy 还要额外花费 10 10 10 分钟的时间进行垃圾分类。
学校要求必须在上午 8:00 \textrm{8:00} 8:00 到达,请计算在不迟到的前提下,yyy 最晚能什么时候出门。
由于路途遥远,yyy 可能不得不提前一点出发,但是提前的时间不会超过一天。
二、输入格式
一行两个正整数 s , v s,v s,v,分别代表路程和速度。
三、输出格式
输出一个 24 24 24 小时制下的时间,代表 yyy 最晚的出发时间。
输出格式为 HH:MM \texttt{HH:MM} HH:MM,分别代表该时间的时和分。必须输出两位,不足前面补 0 0 0。
四、输入输出样例
五、代码
(1)版本一
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int s = sc.nextInt();
int v = sc.nextInt();
int time = 0;
if ((s % v) == 0){
time = s / v + 10;
}else {
time = s / v + 10 + 1;
}
int h1 = (int) (time / 60);
int m1 = time - h1 * 60;
int h2 = 0;
if (h1 <= 7){
h2 = 7 - h1;
}else {
h2 = 7 + 24 -h1;
}
int m2 = 60 - m1;
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
Calendar c = Calendar.getInstance();
c.set(Calendar.HOUR_OF_DAY,h2);
c.set(Calendar.MINUTE,m2);
System.out.println(sdf.format(c.getTime()));
}
}
(2)版本二
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int s = sc.nextInt();
int v = sc.nextInt();
int time = 0;
if((s % v) == 0){
time = (int)(s / v);
}else {
time = (int) (s / v + 1);
}
Calendar c = Calendar.getInstance();
c.set(2022,Calendar.NOVEMBER,5,8,0,0);
c.add(Calendar.MINUTE,-10);
c.add(Calendar.MINUTE,-time);
SimpleDateFormat sdf = new SimpleDateFormat("HH:mm");
System.out.println(sdf.format(c.getTime()));
}
}