結果

問題 No.5 数字のブロック
ユーザー hum_ophum_op
提出日時 2016-04-02 10:22:29
言語 F#
(F# 4.0)
結果
AC  
実行時間 361 ms / 5,000 ms
コード長 476 bytes
コンパイル時間 14,906 ms
コンパイル使用メモリ 185,688 KB
実行使用メモリ 38,316 KB
最終ジャッジ日時 2024-11-18 08:28:22
合計ジャッジ時間 21,868 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
36,160 KB
testcase_01 AC 342 ms
35,640 KB
testcase_02 AC 338 ms
36,056 KB
testcase_03 AC 342 ms
36,212 KB
testcase_04 AC 342 ms
36,024 KB
testcase_05 AC 346 ms
36,384 KB
testcase_06 AC 341 ms
36,256 KB
testcase_07 AC 339 ms
36,196 KB
testcase_08 AC 341 ms
36,604 KB
testcase_09 AC 340 ms
36,160 KB
testcase_10 AC 344 ms
37,396 KB
testcase_11 AC 345 ms
36,420 KB
testcase_12 AC 342 ms
36,904 KB
testcase_13 AC 341 ms
36,992 KB
testcase_14 AC 338 ms
35,468 KB
testcase_15 AC 339 ms
36,780 KB
testcase_16 AC 341 ms
36,940 KB
testcase_17 AC 343 ms
37,336 KB
testcase_18 AC 344 ms
36,744 KB
testcase_19 AC 361 ms
38,316 KB
testcase_20 AC 340 ms
35,612 KB
testcase_21 AC 338 ms
36,200 KB
testcase_22 AC 340 ms
35,508 KB
testcase_23 AC 343 ms
36,300 KB
testcase_24 AC 341 ms
36,392 KB
testcase_25 AC 339 ms
35,620 KB
testcase_26 AC 337 ms
35,928 KB
testcase_27 AC 339 ms
36,048 KB
testcase_28 AC 335 ms
35,768 KB
testcase_29 AC 341 ms
38,220 KB
testcase_30 AC 341 ms
35,840 KB
testcase_31 AC 338 ms
35,124 KB
testcase_32 AC 338 ms
35,896 KB
testcase_33 AC 337 ms
35,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (694 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/

ソースコード

diff #

open System

[<EntryPoint>]
let main argv =
    let L = int <| Console.ReadLine()
    let N = int <| Console.ReadLine()
    let Win = Console.ReadLine().Split(' ')
    let W = Array.create N 0

    for x in 0 .. N-1 do
        W.[x] <- (Int32.Parse Win.[x])
    done
    let W = Array.sort W

    let mutable c = 0
    let mutable size = 0
    for x in 0 .. N-1 do
        size <- size + W.[x]
        if size <= L then
            c <- c + 1
    done
    printfn "%d" c
    0
0