結果
問題 | No.35 タイパー高橋 |
ユーザー | hum_op |
提出日時 | 2016-04-11 22:28:43 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 315 ms / 5,000 ms |
コード長 | 404 bytes |
コンパイル時間 | 5,917 ms |
コンパイル使用メモリ | 188,372 KB |
実行使用メモリ | 36,180 KB |
最終ジャッジ日時 | 2024-10-04 06:40:10 |
合計ジャッジ時間 | 8,175 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 307 ms
35,604 KB |
testcase_01 | AC | 315 ms
36,032 KB |
testcase_02 | AC | 301 ms
35,376 KB |
testcase_03 | AC | 298 ms
36,180 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (214 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/
ソースコード
open System let rec No35 (N:int) (s:int) (m:int) = if N > 0 then let IN = Console.ReadLine().Split(' ') let T, S = Int32.Parse IN.[0], IN.[1] let ct = 12 * T / 1000 if ct > S.Length then No35 (N-1) (s+S.Length) m else No35 (N-1) (s+ct) (m+(S.Length-ct)) else printfn "%d %d" s m No35 (Int32.Parse (Console.ReadLine())) 0 0