結果

問題 No.70 睡眠の重要性!
ユーザー dazydazy
提出日時 2016-09-09 01:35:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 769 bytes
コンパイル時間 3,296 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,072 KB
最終ジャッジ日時 2024-11-15 22:55:58
合計ジャッジ時間 4,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,072 KB
testcase_01 AC 134 ms
53,964 KB
testcase_02 AC 135 ms
53,948 KB
testcase_03 AC 140 ms
53,868 KB
testcase_04 AC 138 ms
53,740 KB
testcase_05 AC 133 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        scan.useDelimiter("[^0-9]");
        int N = scan.nextInt();
        if (N < 1||N > 30) System.exit(1);
        int msum = 0;
        int ans = 0;
        for (int i = 0; i < N; i++) {
            int H = scan.nextInt();
            int M = scan.nextInt();
            int h = scan.nextInt();
            int m = scan.nextInt();
            msum = m - M;
            if (msum > 59) {
                h++;
                msum -= 60;
            } else if (msum < 0) {
                h--;
                msum += 60;
            }
            ans += (h - H + 24)%24 * 60 + msum;
        }
        System.out.println(ans);
    }
}
0