結果
問題 | No.296 n度寝 |
ユーザー | chike_plus |
提出日時 | 2019-03-27 22:52:26 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 64 ms / 1,000 ms |
コード長 | 414 bytes |
コンパイル時間 | 9,192 ms |
コンパイル使用メモリ | 187,208 KB |
実行使用メモリ | 29,696 KB |
最終ジャッジ日時 | 2024-10-11 06:15:18 |
合計ジャッジ時間 | 9,144 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 62 ms
29,568 KB |
testcase_01 | AC | 59 ms
29,568 KB |
testcase_02 | AC | 59 ms
29,696 KB |
testcase_03 | AC | 57 ms
29,440 KB |
testcase_04 | AC | 58 ms
29,184 KB |
testcase_05 | AC | 59 ms
29,312 KB |
testcase_06 | AC | 58 ms
29,312 KB |
testcase_07 | AC | 62 ms
29,568 KB |
testcase_08 | AC | 64 ms
29,696 KB |
testcase_09 | AC | 59 ms
29,440 KB |
testcase_10 | AC | 57 ms
29,312 KB |
testcase_11 | AC | 59 ms
29,184 KB |
testcase_12 | AC | 57 ms
29,312 KB |
testcase_13 | AC | 57 ms
29,312 KB |
testcase_14 | AC | 59 ms
29,440 KB |
testcase_15 | AC | 57 ms
29,440 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (290 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 ``No.296 n度寝``() = let n, h, m, t = stdin.ReadLine().Split(' ') |> fun args -> args.[0]|>int, args.[1]|>int, args.[2]|>int, args.[3]|>int let rec wake (hour,min) n = match n with | 1 -> (hour, min) | _ -> wake (hour + (min + t) / 60 , (min+t)%60 ) (n-1) wake (h, m) n |> fun (hr , mn )-> stdout.WriteLine (hr%24) stdout.WriteLine mn ``No.296 n度寝``()