結果

問題 No.70 睡眠の重要性!
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-31 22:33:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 733 bytes
コンパイル時間 3,393 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-11-22 11:14:22
合計ジャッジ時間 4,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,180 KB
testcase_01 AC 131 ms
41,264 KB
testcase_02 AC 134 ms
41,352 KB
testcase_03 AC 138 ms
41,508 KB
testcase_04 AC 123 ms
40,276 KB
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No70 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        int count = s.nextInt();
        int minutes = 0;
        for (int i = 0; i < count; i++) {
            String[] sleep = s.next().split(":");
            String[] wakeup = s.next().split(":");
            int wakeupHour = Integer.parseInt(wakeup[0]);
            int sleepHour = Integer.parseInt(sleep[0]);
            if (sleepHour > wakeupHour) {
                wakeupHour += 24;
            }
            minutes += (wakeupHour - sleepHour) * 60
                       + Integer.parseInt(wakeup[1]) - Integer.parseInt(sleep[1]);
        }
        System.out.println(minutes);
    }
}
0