結果

問題 No.5 数字のブロック
ユーザー mazreanmazrean
提出日時 2019-09-16 00:54:07
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 7,255 ms
コンパイル使用メモリ 185,904 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-07-06 22:54:59
合計ジャッジ時間 10,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 60 ms
29,568 KB
testcase_02 AC 58 ms
29,544 KB
testcase_03 AC 62 ms
30,336 KB
testcase_04 AC 62 ms
30,204 KB
testcase_05 AC 65 ms
30,464 KB
testcase_06 AC 62 ms
30,336 KB
testcase_07 AC 62 ms
30,324 KB
testcase_08 AC 61 ms
30,204 KB
testcase_09 AC 61 ms
30,080 KB
testcase_10 AC 63 ms
30,708 KB
testcase_11 AC 61 ms
30,208 KB
testcase_12 AC 62 ms
30,464 KB
testcase_13 AC 64 ms
30,464 KB
testcase_14 AC 60 ms
29,696 KB
testcase_15 AC 60 ms
30,080 KB
testcase_16 AC 63 ms
30,576 KB
testcase_17 AC 63 ms
30,464 KB
testcase_18 AC 63 ms
30,464 KB
testcase_19 AC 64 ms
30,976 KB
testcase_20 AC 59 ms
29,696 KB
testcase_21 AC 60 ms
29,696 KB
testcase_22 AC 59 ms
29,696 KB
testcase_23 AC 59 ms
29,696 KB
testcase_24 AC 60 ms
29,824 KB
testcase_25 AC 61 ms
30,208 KB
testcase_26 AC 59 ms
29,696 KB
testcase_27 AC 59 ms
29,696 KB
testcase_28 AC 56 ms
29,524 KB
testcase_29 AC 62 ms
30,320 KB
testcase_30 AC 62 ms
30,080 KB
testcase_31 AC 56 ms
29,184 KB
testcase_32 AC 57 ms
29,184 KB
testcase_33 AC 56 ms
29,312 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (236 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 #

let l = stdin.ReadLine() |> int
let n = stdin.ReadLine() |> int
let w = stdin.ReadLine().Split() |> Array.map int |> Array.sort
let rec f i sum =
    if i=n then n 
    elif sum>l then (i-1)
    else f (i+1) (sum+w.[i])
f 0 0 |> stdout.WriteLine
0