結果

問題 No.156 キャンディー・ボックス
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-26 12:41:38
言語 F#
(F# 4.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 10,914 ms
コンパイル使用メモリ 203,740 KB
実行使用メモリ 35,356 KB
最終ジャッジ日時 2024-07-05 16:06:21
合計ジャッジ時間 23,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
35,100 KB
testcase_01 AC 338 ms
34,816 KB
testcase_02 AC 334 ms
34,964 KB
testcase_03 AC 338 ms
34,964 KB
testcase_04 AC 340 ms
35,228 KB
testcase_05 AC 340 ms
35,092 KB
testcase_06 AC 337 ms
34,936 KB
testcase_07 AC 337 ms
35,096 KB
testcase_08 AC 337 ms
35,220 KB
testcase_09 AC 333 ms
34,936 KB
testcase_10 AC 337 ms
35,224 KB
testcase_11 AC 337 ms
35,096 KB
testcase_12 AC 328 ms
35,232 KB
testcase_13 AC 331 ms
34,836 KB
testcase_14 AC 334 ms
34,844 KB
testcase_15 AC 335 ms
35,216 KB
testcase_16 AC 333 ms
35,220 KB
testcase_17 AC 331 ms
35,224 KB
testcase_18 AC 336 ms
34,968 KB
testcase_19 AC 331 ms
35,352 KB
testcase_20 AC 334 ms
34,836 KB
testcase_21 AC 333 ms
34,964 KB
testcase_22 AC 334 ms
35,352 KB
testcase_23 AC 341 ms
35,356 KB
testcase_24 AC 331 ms
34,928 KB
testcase_25 AC 332 ms
35,320 KB
testcase_26 AC 333 ms
35,100 KB
testcase_27 AC 335 ms
34,972 KB
testcase_28 AC 336 ms
35,096 KB
testcase_29 AC 334 ms
35,096 KB
testcase_30 AC 338 ms
35,224 KB
testcase_31 AC 335 ms
34,844 KB
testcase_32 AC 331 ms
34,200 KB
testcase_33 AC 335 ms
35,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (256 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(14,28): warning FS0044: このコンストラクトは使用されなくなりました。please use Seq.item [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let split (s:string) = s.Split ' '

let f = split >> Seq.map int >> Seq.last
let g = split >> Seq.map int >> Seq.sort

let count =
    let m = stdin.ReadLine () |> f
    let sq = stdin.ReadLine () |> g

    let rec iter acc c =
        match (m - acc) with
        | i when i < 0 -> c - 1
        | i when i = 0 -> c
        | _ -> iter (acc + Seq.nth c sq) (c + 1)

    iter 0 0

count |> printfn "%d"
0