結果

問題 No.5 数字のブロック
ユーザー regeregeregerege
提出日時 2015-11-25 20:22:16
言語 F#
(F# 4.0)
結果
AC  
実行時間 358 ms / 5,000 ms
コード長 342 bytes
コンパイル時間 7,557 ms
コンパイル使用メモリ 191,200 KB
実行使用メモリ 36,468 KB
最終ジャッジ日時 2024-11-18 07:55:16
合計ジャッジ時間 20,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
34,712 KB
testcase_01 AC 323 ms
34,464 KB
testcase_02 AC 313 ms
34,984 KB
testcase_03 AC 323 ms
35,548 KB
testcase_04 AC 324 ms
35,288 KB
testcase_05 AC 323 ms
36,108 KB
testcase_06 AC 328 ms
35,980 KB
testcase_07 AC 320 ms
35,792 KB
testcase_08 AC 324 ms
35,140 KB
testcase_09 AC 318 ms
35,180 KB
testcase_10 AC 322 ms
36,368 KB
testcase_11 AC 320 ms
35,744 KB
testcase_12 AC 325 ms
35,852 KB
testcase_13 AC 323 ms
36,048 KB
testcase_14 AC 324 ms
34,728 KB
testcase_15 AC 321 ms
34,748 KB
testcase_16 AC 330 ms
36,252 KB
testcase_17 AC 331 ms
36,468 KB
testcase_18 AC 341 ms
36,128 KB
testcase_19 AC 341 ms
36,196 KB
testcase_20 AC 329 ms
34,964 KB
testcase_21 AC 319 ms
35,104 KB
testcase_22 AC 317 ms
34,836 KB
testcase_23 AC 358 ms
34,460 KB
testcase_24 AC 324 ms
35,508 KB
testcase_25 AC 322 ms
34,632 KB
testcase_26 AC 326 ms
34,592 KB
testcase_27 AC 321 ms
34,468 KB
testcase_28 AC 322 ms
35,104 KB
testcase_29 AC 330 ms
35,780 KB
testcase_30 AC 325 ms
34,956 KB
testcase_31 AC 318 ms
34,984 KB
testcase_32 AC 317 ms
35,236 KB
testcase_33 AC 319 ms
34,980 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (213 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 ``No.5 数字のブロック`` () =
    let L = int <| stdin.ReadLine()
    let M = int <| stdin.ReadLine()
    stdin.ReadLine().Split(' ')
    |> Seq.map int
    |> Seq.sort
    |> Seq.scan (fun (s,c) n -> s+n,c+1) (0,0)
    |> Seq.takeWhile (fst >> (>=)L)
    |> Seq.last
    |> snd
    |> printfn "%d"
``No.5 数字のブロック`` ()
0