結果
問題 | No.35 タイパー高橋 |
ユーザー | regerege |
提出日時 | 2016-01-10 18:59:49 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 477 bytes |
コンパイル時間 | 7,387 ms |
コンパイル使用メモリ | 193,016 KB |
実行使用メモリ | 35,920 KB |
最終ジャッジ日時 | 2024-09-19 15:58:20 |
合計ジャッジ時間 | 9,941 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 362 ms
35,888 KB |
testcase_03 | AC | 366 ms
35,920 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (237 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 タイパー高橋`` ()