結果

問題 No.70 睡眠の重要性!
ユーザー kaoetayakaoetaya
提出日時 2016-11-09 15:52:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 770 bytes
コンパイル時間 3,087 ms
コンパイル使用メモリ 77,960 KB
実行使用メモリ 54,044 KB
最終ジャッジ日時 2024-05-04 00:18:03
合計ジャッジ時間 4,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,428 KB
testcase_01 AC 122 ms
41,520 KB
testcase_02 AC 123 ms
41,552 KB
testcase_03 AC 115 ms
41,824 KB
testcase_04 AC 123 ms
41,400 KB
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		int n = s.nextInt(),sum = 0,H,M,h,m;
		
		for(int i=0;i<n;i++){
			String[] time = s.next().split(":");
			
			H = Integer.parseInt(time[0]);
			M = Integer.parseInt(time[1]);
			
			time = s.next().split(":");
			
			h = Integer.parseInt(time[0]);
			m = Integer.parseInt(time[1]);
			
			if(h==H && M>m){
				sum = sum + (60-M) + 23*60 + m;
				System.out.println(sum);
			}
			else if(h==H && M<m){
				sum = sum + (m - M);
				System.out.println(sum);
			}
			else if((h - H) < 0){
				sum = sum + (((24+h)*60+m) - (H*60+M));
			}
			else{
				sum = sum + ((h*60+m) - (H*60+M));
			}
	    }
		
		System.out.println(sum);
    }
}
0