結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
29,952 KB
testcase_01 AC 59 ms
29,696 KB
testcase_02 WA -
testcase_03 AC 62 ms
30,336 KB
testcase_04 AC 62 ms
30,320 KB
testcase_05 AC 61 ms
30,508 KB
testcase_06 AC 61 ms
30,328 KB
testcase_07 AC 61 ms
30,452 KB
testcase_08 AC 61 ms
30,464 KB
testcase_09 AC 61 ms
30,080 KB
testcase_10 AC 63 ms
30,464 KB
testcase_11 AC 62 ms
30,196 KB
testcase_12 AC 62 ms
30,336 KB
testcase_13 AC 63 ms
30,716 KB
testcase_14 AC 59 ms
29,804 KB
testcase_15 AC 60 ms
29,824 KB
testcase_16 AC 62 ms
30,720 KB
testcase_17 AC 62 ms
30,688 KB
testcase_18 AC 62 ms
30,584 KB
testcase_19 AC 64 ms
31,104 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 59 ms
29,568 KB
testcase_24 AC 61 ms
29,696 KB
testcase_25 AC 62 ms
29,940 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 62 ms
30,080 KB
testcase_30 AC 60 ms
30,080 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (788 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 || sum>l then (i-1)
    else f (i+1) (sum+w.[i])
f 0 0 |> stdout.WriteLine
0