結果

問題 No.1015 おつりは要らないです
ユーザー ikdikd
提出日時 2020-05-03 11:52:16
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 920 bytes
コンパイル時間 14,962 ms
コンパイル使用メモリ 197,876 KB
実行使用メモリ 68,248 KB
最終ジャッジ日時 2024-06-11 17:42:33
合計ジャッジ時間 21,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,720 KB
testcase_01 AC 59 ms
30,836 KB
testcase_02 AC 57 ms
30,720 KB
testcase_03 AC 57 ms
30,592 KB
testcase_04 AC 58 ms
30,848 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 59 ms
30,808 KB
testcase_08 AC 60 ms
30,680 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 141 ms
58,112 KB
testcase_16 AC 148 ms
58,752 KB
testcase_17 AC 150 ms
59,136 KB
testcase_18 AC 147 ms
58,496 KB
testcase_19 AC 144 ms
58,368 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 62 ms
30,592 KB
testcase_31 AC 111 ms
46,208 KB
testcase_32 AC 105 ms
46,336 KB
testcase_33 AC 143 ms
68,248 KB
testcase_34 AC 63 ms
30,832 KB
testcase_35 AC 59 ms
30,464 KB
testcase_36 AC 59 ms
30,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (578 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(24,9): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[|_; _; _; _; _|]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

// Learn more about F# at http://fsharp.org

open System

// v 円の紙幣 x 枚
let solve v x a =
    let b, z2 =
        a
        |> Array.mapFold (fun rest p ->
            (if rest <= 0 || p <= v then
                p, rest
             else
                 let k = Math.Min(rest, p / v)
                 p - p / v * k * v, rest - k)) x
    b
    |> Array.mapFold (fun rest p ->
        (if rest <= 0 then p, rest else p - v, rest - 1)) z2
    |> fst
    |> Array.filter (fun p -> p >= 0)
    |> Array.sortDescending

[<EntryPoint>]
let main argv =
    let [| n; x; y; z |] = stdin.ReadLine().Split() |> Array.map int

    let a =
        stdin.ReadLine().Split()
        |> Array.map int
        |> Array.sortDescending

    let b = a |> solve 10000 z
    let c = b |> solve 5000 y
    let d = c |> solve 1000 x
    if d |> Array.isEmpty then printfn "Yes" else printfn "No"
    0 // return an integer exit code
0