結果
問題 | No.70 睡眠の重要性! |
ユーザー | shinwisteria |
提出日時 | 2018-03-04 15:39:13 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 128 ms / 5,000 ms |
コード長 | 801 bytes |
コンパイル時間 | 3,636 ms |
コンパイル使用メモリ | 77,704 KB |
実行使用メモリ | 41,480 KB |
最終ジャッジ日時 | 2024-07-07 19:54:00 |
合計ジャッジ時間 | 4,644 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
41,176 KB |
testcase_01 | AC | 122 ms
41,220 KB |
testcase_02 | AC | 109 ms
41,480 KB |
testcase_03 | AC | 128 ms
41,288 KB |
testcase_04 | AC | 126 ms
41,244 KB |
testcase_05 | AC | 121 ms
41,464 KB |
ソースコード
package m.shin; import java.util.Scanner; public class Con70 { public static void main(String[] args) { Scanner s = new Scanner(System.in); int N = s.nextInt(); String[] start = new String[N]; String[] end = new String[N]; for(int i = 0;i < N;i++){ start[i] = s.next(); end[i] = s.next(); } s.close(); int count = 0; for(int i = 0;i < N;i++){ int a = Integer.parseInt(start[i].substring(0, start[i].indexOf(":"))) * 60 + Integer.parseInt(start[i].substring(start[i].indexOf(":") + 1,start[i].length())); int b = Integer.parseInt(end[i].substring(0, end[i].indexOf(":"))) * 60 + Integer.parseInt(end[i].substring(end[i].indexOf(":") + 1,end[i].length())); count += b-a; if(a > b){ count += 24 * 60; } } System.out.println(count); } }