結果
問題 | No.70 睡眠の重要性! |
ユーザー | rf141 |
提出日時 | 2015-12-20 09:51:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 124 ms / 5,000 ms |
コード長 | 566 bytes |
コンパイル時間 | 2,053 ms |
コンパイル使用メモリ | 74,992 KB |
実行使用メモリ | 54,284 KB |
最終ジャッジ日時 | 2024-09-17 11:54:44 |
合計ジャッジ時間 | 3,082 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
54,144 KB |
testcase_01 | AC | 116 ms
54,276 KB |
testcase_02 | AC | 120 ms
54,148 KB |
testcase_03 | AC | 121 ms
54,268 KB |
testcase_04 | AC | 124 ms
54,276 KB |
testcase_05 | AC | 118 ms
54,284 KB |
ソースコード
import java.util.*; public class Main { public static void main(String... args) { Scanner scan=new Scanner(System.in); int n=scan.nextInt(); int result=0; for(int i=0;i<n;i++){ String S=scan.next(); String t[]=S.split(":"); S=scan.next(); String u[]=S.split(":"); int k=Integer.valueOf(u[0])*60+Integer.valueOf(u[1])-Integer.valueOf(t[0])*60-Integer.valueOf(t[1]); if(k<0)k=1440+k; result+=k; } System.out.println(result); } }