結果

問題 No.70 睡眠の重要性!
ユーザー mits58mits58
提出日時 2016-07-29 23:19:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 73,964 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-04-24 12:23:02
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 104 ms
40,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		while(sc.hasNext()){
			int n=sc.nextInt();
			int sum=0;
			for(int i=0;i<n;i++){
				String[] s1=(sc.next()).split(":");
				String[] s2=(sc.next()).split(":");
				int t1=Integer.valueOf(s1[0])*60+Integer.valueOf(s1[1]);
				int t2=Integer.parseInt(s2[0])*60+Integer.valueOf(s2[1]);
				sum+=((t1-t2)+1440)%1440;
			}
			System.out.println(sum);
		}
	}
}
0