結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | regerege |
提出日時 | 2015-09-05 08:50:10 |
言語 | F# (F# 4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 488 bytes |
コンパイル時間 | 9,338 ms |
コンパイル使用メモリ | 184,856 KB |
実行使用メモリ | 37,760 KB |
最終ジャッジ日時 | 2024-07-19 03:45:36 |
合計ジャッジ時間 | 14,727 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 326 ms
34,900 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 321 ms
35,176 KB |
testcase_04 | AC | 315 ms
34,768 KB |
testcase_05 | AC | 314 ms
34,912 KB |
testcase_06 | AC | 317 ms
34,908 KB |
testcase_07 | AC | 317 ms
35,032 KB |
testcase_08 | AC | 316 ms
35,040 KB |
testcase_09 | RE | - |
testcase_10 | AC | 318 ms
35,040 KB |
testcase_11 | AC | 329 ms
34,784 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (272 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 L = int <| stdin.ReadLine() let M = int <| stdin.ReadLine() let N = int <| stdin.ReadLine() let money = Seq.zip [100;25;1;] [L;M;N] |> Seq.map (fun (a,b) -> a*b) |> Seq.reduce ((+)) let coins = [1000;100;25;1;] let rec f l m p = let a,b = m/coins.[p],m%coins.[p] if m - a*coins.[p] = 0 then l@[a] else f (l@[a]) (m-a*coins.[p]) (p+1) f [] money 0 |> Seq.skip 1 |> Seq.reduce((+)) |> printfn "%d"