結果

問題 No.70 睡眠の重要性!
ユーザー 37zigen37zigen
提出日時 2016-04-01 11:27:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-10-02 08:45:47
合計ジャッジ時間 3,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,036 KB
testcase_01 AC 125 ms
54,156 KB
testcase_02 AC 123 ms
53,912 KB
testcase_03 AC 131 ms
54,064 KB
testcase_04 AC 131 ms
54,088 KB
testcase_05 AC 128 ms
54,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder070;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int sum=0;
		for(int i=0;i<n;i++){
			String str1=sc.next();
			String str2=sc.next();
			String[] Str1=str1.split(":");
			String[] Str2=str2.split(":");
			int t1=Integer.parseInt(Str1[0])*60+Integer.parseInt(Str1[1]);
			int t2=Integer.parseInt(Str2[0])*60+Integer.parseInt(Str2[1]);
			
			int t=t2-t1;
			if(t<0)t+=24*60;
			sum+=t;
		}
		System.out.println(sum);
	}
}
0