結果
問題 | No.70 睡眠の重要性! |
ユーザー | kano_town |
提出日時 | 2014-11-20 10:50:13 |
言語 | Java21 (openjdk 21) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 600 bytes |
コンパイル時間 | 3,495 ms |
コンパイル使用メモリ | 74,884 KB |
実行使用メモリ | 41,484 KB |
最終ジャッジ日時 | 2024-06-10 21:17:37 |
合計ジャッジ時間 | 4,585 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
41,484 KB |
testcase_01 | AC | 135 ms
41,460 KB |
testcase_02 | AC | 135 ms
41,340 KB |
testcase_03 | AC | 138 ms
41,376 KB |
testcase_04 | AC | 138 ms
41,232 KB |
testcase_05 | WA | - |
ソースコード
import java.util.Scanner; public class Yukicoder70 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String s; String[] buf, buf2; int h1, m1, h2, m2; int sum = 0; for (int i = 0; i < n; i++) { buf = sc.next().split(":"); h1 = Integer.parseInt(buf[0]); m1 = Integer.parseInt(buf[1]); buf = sc.next().split(":"); h2 = Integer.parseInt(buf[0]); m2 = Integer.parseInt(buf[1]); sum += h1 > h2 ? (h2 - h1 + 24) * 60 : (h2 - h1) * 60; sum += m2 - m1; } System.out.println(sum); } }