結果

問題 No.156 キャンディー・ボックス
ユーザー regeregeregerege
提出日時 2016-06-26 20:24:34
言語 F#
(F# 4.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 13,085 ms
コンパイル使用メモリ 191,656 KB
実行使用メモリ 35,180 KB
最終ジャッジ日時 2024-07-05 15:52:04
合計ジャッジ時間 23,909 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
34,252 KB
testcase_01 AC 346 ms
34,624 KB
testcase_02 AC 348 ms
34,632 KB
testcase_03 AC 349 ms
34,396 KB
testcase_04 AC 345 ms
34,244 KB
testcase_05 AC 341 ms
34,656 KB
testcase_06 AC 351 ms
35,052 KB
testcase_07 AC 345 ms
34,272 KB
testcase_08 AC 344 ms
34,652 KB
testcase_09 AC 346 ms
34,652 KB
testcase_10 AC 349 ms
34,248 KB
testcase_11 AC 347 ms
34,268 KB
testcase_12 AC 342 ms
34,528 KB
testcase_13 AC 341 ms
34,520 KB
testcase_14 AC 343 ms
35,180 KB
testcase_15 AC 344 ms
34,652 KB
testcase_16 AC 341 ms
35,016 KB
testcase_17 AC 345 ms
34,404 KB
testcase_18 AC 344 ms
34,528 KB
testcase_19 AC 342 ms
34,264 KB
testcase_20 AC 345 ms
34,360 KB
testcase_21 AC 342 ms
34,648 KB
testcase_22 AC 347 ms
34,796 KB
testcase_23 AC 345 ms
34,656 KB
testcase_24 AC 337 ms
34,688 KB
testcase_25 AC 345 ms
34,144 KB
testcase_26 AC 348 ms
34,524 KB
testcase_27 AC 346 ms
34,896 KB
testcase_28 AC 345 ms
34,384 KB
testcase_29 AC 354 ms
34,548 KB
testcase_30 AC 348 ms
34,904 KB
testcase_31 AC 341 ms
34,400 KB
testcase_32 AC 343 ms
34,648 KB
testcase_33 AC 348 ms
34,428 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (509 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 I() = stdin.ReadLine().Split(' ') |> Array.map int
let N,M = let a = I() in a.[0],a.[1]
I() |> Seq.sort
|> Seq.scan (fun (c,s) n -> if M>=s+n then c+1,s+n else c,M+1) (0,0)
|> Seq.takeWhile (snd>>((>=)M))
|> Seq.last |> fst
|> printfn "%d"
0