結果
問題 | No.35 タイパー高橋 |
ユーザー | regerege |
提出日時 | 2016-01-10 23:45:29 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 525 bytes |
コンパイル時間 | 15,169 ms |
コンパイル使用メモリ | 185,904 KB |
実行使用メモリ | 34,176 KB |
最終ジャッジ日時 | 2024-09-19 16:02:17 |
合計ジャッジ時間 | 8,194 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 100 ms
34,176 KB |
testcase_03 | AC | 99 ms
33,792 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (380 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 + bigint a,s2 + bigint b) (0I,0I) |> fun (a,b) -> printfn "%s %s" <| a.ToString() <| b.ToString() ``No.35 タイパー高橋`` ()