結果
問題 | No.70 睡眠の重要性! |
ユーザー | ohagi_1182 |
提出日時 | 2017-10-20 22:20:29 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 462 bytes |
コンパイル時間 | 2,300 ms |
コンパイル使用メモリ | 76,516 KB |
実行使用メモリ | 55,088 KB |
最終ジャッジ日時 | 2024-11-21 10:50:30 |
合計ジャッジ時間 | 3,967 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 167 ms
42,308 KB |
testcase_01 | AC | 168 ms
42,132 KB |
testcase_02 | AC | 171 ms
42,368 KB |
testcase_03 | AC | 174 ms
42,320 KB |
testcase_04 | AC | 176 ms
42,220 KB |
testcase_05 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int ans = 0; for(int i = 0 ; i < n ; i++) { String[] time = (sc.next() + ":" + sc.next()).split(":"); int h = (Integer.valueOf(time[2]) + 24 - Integer.valueOf(time[0])) % 24; int m = Integer.valueOf(time[3]) - Integer.valueOf(time[1]); ans += h * 60 + m; } System.out.println(ans); } }