結果
問題 | No.70 睡眠の重要性! |
ユーザー | fal_rnd |
提出日時 | 2016-10-26 22:43:34 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 398 bytes |
コンパイル時間 | 2,557 ms |
コンパイル使用メモリ | 74,148 KB |
実行使用メモリ | 54,592 KB |
最終ジャッジ日時 | 2024-11-24 03:55:52 |
合計ジャッジ時間 | 3,431 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
import static java.lang.Integer.parseInt; import java.util.Scanner; class A { static Scanner s = new Scanner(System.in); public static void main(String[] args) { String in[]; int r=0; s.nextLine(); while(s.hasNextLine()) { in = s.nextLine().split("( |:)"); r += (parseInt(in[2])-parseInt(in[0])+24)%24*60 + (parseInt(in[3])-parseInt(in[1])); System.out.println(r); } } }