結果

問題 No.70 睡眠の重要性!
ユーザー nCk_cvnCk_cv
提出日時 2016-02-01 19:57:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 621 bytes
コンパイル時間 2,885 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 57,616 KB
最終ジャッジ日時 2023-10-21 18:30:45
合計ジャッジ時間 3,635 ms
ジャッジサーバーID
(参考情報)
judge9 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
57,352 KB
testcase_01 AC 133 ms
57,388 KB
testcase_02 AC 138 ms
57,436 KB
testcase_03 AC 139 ms
57,616 KB
testcase_04 AC 139 ms
55,576 KB
testcase_05 AC 133 ms
57,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
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[] st = sc.next().split(":");
			String[] en = sc.next().split(":");
			int sth = Integer.parseInt(st[0]);
			int stm = Integer.parseInt(st[1]);
			int enh = Integer.parseInt(en[0]);
			int enm = Integer.parseInt(en[1]);
			if(enh < sth || (enh == sth && enm < stm)) enh += 24;
			int plus = (enh * 60 + enm ) - (sth * 60 + stm);
			sum += plus;
		}
		System.out.println(sum);
	}
}
0