結果
問題 | No.70 睡眠の重要性! |
ユーザー | kaoetaya |
提出日時 | 2016-11-09 15:30:04 |
言語 | Java (openjdk 23) |
結果 |
WA
|
実行時間 | - |
コード長 | 591 bytes |
コンパイル時間 | 2,947 ms |
コンパイル使用メモリ | 74,168 KB |
実行使用メモリ | 53,824 KB |
最終ジャッジ日時 | 2024-11-25 05:53:21 |
合計ジャッジ時間 | 4,271 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 107 ms
52,512 KB |
testcase_01 | AC | 109 ms
52,648 KB |
testcase_02 | AC | 120 ms
53,496 KB |
testcase_03 | AC | 120 ms
52,872 KB |
testcase_04 | AC | 111 ms
52,784 KB |
testcase_05 | WA | - |
ソースコード
import java.util.Scanner; public class pre { public static void main(String[] args) { Scanner s = new Scanner(System.in); int n = s.nextInt(),sum = 0,H,M,h,m; for(int i=0;i<n;i++){ String[] time = s.next().split(":"); H = Integer.parseInt(time[0]); M = Integer.parseInt(time[1]); time = s.next().split(":"); h = Integer.parseInt(time[0]); m = Integer.parseInt(time[1]); if((h - H) < 0){ sum = sum + (((24+h)*60+m) - (H*60+M)); } else{ sum = sum + ((h*60+m) - (H*60+M)); } } System.out.println(sum); } }