結果
問題 | No.70 睡眠の重要性! |
ユーザー | uafr_cs |
提出日時 | 2016-02-02 19:16:14 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 138 ms / 5,000 ms |
コード長 | 748 bytes |
コンパイル時間 | 2,142 ms |
コンパイル使用メモリ | 75,036 KB |
実行使用メモリ | 54,240 KB |
最終ジャッジ日時 | 2024-09-21 20:02:57 |
合計ジャッジ時間 | 3,724 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,112 KB |
testcase_01 | AC | 133 ms
54,112 KB |
testcase_02 | AC | 136 ms
54,080 KB |
testcase_03 | AC | 138 ms
53,916 KB |
testcase_04 | AC | 138 ms
53,792 KB |
testcase_05 | AC | 134 ms
54,240 KB |
ソースコード
import java.util.Arrays; import java.util.LinkedList; import java.util.Scanner; public class Main { // やるだけ. public static void main(String[] args){ Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); long sum = 0; for(int i = 0; i < N; i++){ final String[] ins = sc.next().split(":"); final String[] outs = sc.next().split(":"); final int H = Integer.parseInt(ins[0]); final int M = Integer.parseInt(ins[1]); final int T = H * 60 + M; final int h = Integer.parseInt(outs[0]); final int m = Integer.parseInt(outs[1]); final int t = h * 60 + m; //System.out.println(T + " " + t); sum += (T >= t ? (24 * 60 - T + t) : (t - T)); } System.out.println(sum); } }