結果
問題 | No.70 睡眠の重要性! |
ユーザー | maimai8 |
提出日時 | 2020-08-05 14:35:08 |
言語 | OCaml (5.1.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 339 bytes |
コンパイル時間 | 385 ms |
コンパイル使用メモリ | 21,320 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 01:55:46 |
合計ジャッジ時間 | 929 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
ソースコード
let () = Scanf.scanf "%d\n" @@ fun n -> let ans = Array.init n @@ fun _ -> Scanf.scanf "%d:%d %d:%d\n" @@ fun h1 m1 h2 m2 -> let h = ref (if h1 > h2 then h2 + 24 - h1 else h2 - h1) in let m = if m2 - m1 < 0 then (h := !h - 1; m2 + 60 - m1) else m2 - m1 in (!h) * 60 + m in Printf.printf "%d\n" (Array.fold_left (+) 0 ans)