結果
問題 | No.70 睡眠の重要性! |
ユーザー | regerege |
提出日時 | 2016-03-26 23:25:22 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 346 ms / 5,000 ms |
コード長 | 329 bytes |
コンパイル時間 | 8,449 ms |
コンパイル使用メモリ | 195,936 KB |
実行使用メモリ | 34,776 KB |
最終ジャッジ日時 | 2024-10-02 01:06:46 |
合計ジャッジ時間 | 10,933 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 346 ms
34,500 KB |
testcase_01 | AC | 346 ms
34,656 KB |
testcase_02 | AC | 343 ms
34,400 KB |
testcase_03 | AC | 322 ms
34,656 KB |
testcase_04 | AC | 294 ms
34,652 KB |
testcase_05 | AC | 292 ms
34,776 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (216 ms)。 MSBuild のバージョン 17.9.6+a4ecab324 (.NET) main -> /home/judge/data/code/bin/Release/net8.0/main.dll main -> /home/judge/data/code/bin/Release/net8.0/publish/
ソースコード
let N = int <| stdin.ReadLine() let t (s:string) = let a = s.Split(':') let b = (int a.[0] * 60) + int a.[1] b let f (s:string) = let a = s.Split(' ') let b,c = t a.[0], t a.[1] if b <= c then c - b else 1440 - (b - c) seq { for _ in 1..N -> stdin.ReadLine() } |> Seq.map f |> Seq.sum |> printfn "%d"