結果

問題 No.70 睡眠の重要性!
ユーザー FVRChanFVRChan
提出日時 2017-08-19 05:51:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 517 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 41,340 KB
最終ジャッジ日時 2024-10-14 15:21:10
合計ジャッジ時間 3,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,160 KB
testcase_01 AC 129 ms
41,052 KB
testcase_02 AC 129 ms
41,340 KB
testcase_03 AC 133 ms
41,136 KB
testcase_04 AC 132 ms
41,192 KB
testcase_05 AC 126 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String args[]){
		Scanner sc=new Scanner(System.in);
		int n=Integer.parseInt(sc.nextLine()),begin,end,sum=0;
		String s[];
		int are[]=new int[4];
		for(int i=0;i<n;i++){
			s=sc.nextLine().split(" |:");
			for(int j=0;j<4;j++)
				are[j]=Integer.parseInt(s[j]);
			if(are[0]>are[2] || (are[0]==are[2] && are[1]>are[3]))
				are[2]+=24;
			begin=are[0]*60+are[1];
			end=are[2]*60+are[3];
			sum+=(end-begin);
		}
		System.out.println(sum);
	}
}
0