結果
問題 | No.35 タイパー高橋 |
ユーザー | regerege |
提出日時 | 2016-01-11 08:17:32 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 322 ms / 5,000 ms |
コード長 | 478 bytes |
コンパイル時間 | 6,977 ms |
コンパイル使用メモリ | 191,956 KB |
実行使用メモリ | 36,172 KB |
最終ジャッジ日時 | 2024-09-19 18:44:12 |
合計ジャッジ時間 | 8,050 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 320 ms
35,748 KB |
testcase_01 | AC | 318 ms
35,628 KB |
testcase_02 | AC | 317 ms
35,924 KB |
testcase_03 | AC | 322 ms
36,172 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (258 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.35 タイパー高橋`` () = let f = 12. / 1000. let N = int <| stdin.ReadLine() Seq.initInfinite (fun _ -> stdin.ReadLine().Split(' ')) |> Seq.take N |> Seq.map (fun arr -> let l = arr.[1].Length let a = int(f * (float arr.[0])) let b = a / l let c = if 1 <= b then l else a c,l-c) |> Seq.fold (fun (s1,s2) (a,b) -> s1+a,s2+b) (0,0) |> fun (a,b) -> printfn "%d %d" a b ``No.35 タイパー高橋`` ()