#20148: JAVA WA


z85385637 (M-Kai)

學校 : 樹德科技大學
編號 : 96081
來源 : [180.218.46.214]
最後登入時間 :
2022-10-13 21:14:12
b572. 忘了東西的傑克 -- 板橋高中練習題 | From: [210.63.221.237] | 發表日期 : 2019-12-08 16:57

import java.util.Scanner;

public class test4 {

public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
while(sc.hasNext()) {
int runtime = sc.nextInt();
for(int i = 1 ; i <= runtime ; i++ ) {
int H1 = sc.nextInt();
int M1 = sc.nextInt();
int H2 = sc.nextInt();
int M2 = sc.nextInt();
int deadline= sc.nextInt();

if(Math.abs((H2*60+M2)-(H1*60+M1))>deadline) {
System.out.println("Yes");
}else {
System.out.println("No");
}

}


}


}
}

 

請問各位大大哪出了問題 

 
ZeroJudge Forum