結果
問題 | No.70 睡眠の重要性! |
ユーザー | koukonko |
提出日時 | 2015-12-19 17:59:58 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 54 ms / 5,000 ms |
コード長 | 1,015 bytes |
コンパイル時間 | 2,033 ms |
コンパイル使用メモリ | 76,904 KB |
実行使用メモリ | 50,224 KB |
最終ジャッジ日時 | 2024-09-16 16:09:11 |
合計ジャッジ時間 | 2,720 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
50,080 KB |
testcase_01 | AC | 51 ms
50,192 KB |
testcase_02 | AC | 50 ms
49,896 KB |
testcase_03 | AC | 52 ms
50,120 KB |
testcase_04 | AC | 53 ms
50,040 KB |
testcase_05 | AC | 53 ms
50,224 KB |
ソースコード
package yukicoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) { BufferedReader buff = new BufferedReader(new InputStreamReader(System.in)); try { int count = Integer.parseInt(buff.readLine()); int ans = 0; while (count-- > 0) { String[] box = buff.readLine().split(" "); String[] goBox = box[0].split(":"); String[] getBox = box[1].split(":"); int go = 0; int get = 0; for (int i = 0; i < 2; ++i) { int mul = 1; if (i == 0) { mul = 60; } get += Integer.parseInt(getBox[i]) * mul; go += Integer.parseInt(goBox[i]) * mul; } if (get - go > 0) { ans += get - go; } else { ans += 24 * 60 - Math.abs(get - go); } } System.out.println(ans); } catch (NumberFormatException e) { e.getStackTrace(); } catch (IOException e) { e.getStackTrace(); } catch (Exception e) { e.getStackTrace(); } } }