結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,008 KB
testcase_01 AC 134 ms
53,896 KB
testcase_02 AC 139 ms
53,572 KB
testcase_03 AC 147 ms
54,056 KB
testcase_04 AC 142 ms
53,988 KB
testcase_05 AC 136 ms
54,000 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