結果

問題 No.156 キャンディー・ボックス
ユーザー noriocnorioc
提出日時 2015-09-25 02:42:24
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 896 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 10,550 ms
コンパイル使用メモリ 266,036 KB
実行使用メモリ 64,172 KB
最終ジャッジ日時 2024-11-20 08:54:13
合計ジャッジ時間 42,169 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 871 ms
63,676 KB
testcase_01 AC 869 ms
64,000 KB
testcase_02 AC 896 ms
63,944 KB
testcase_03 AC 866 ms
63,872 KB
testcase_04 AC 869 ms
64,012 KB
testcase_05 AC 885 ms
64,140 KB
testcase_06 AC 865 ms
63,876 KB
testcase_07 AC 865 ms
63,996 KB
testcase_08 AC 870 ms
63,872 KB
testcase_09 AC 872 ms
64,144 KB
testcase_10 AC 877 ms
64,084 KB
testcase_11 AC 888 ms
63,916 KB
testcase_12 AC 888 ms
64,076 KB
testcase_13 AC 870 ms
63,836 KB
testcase_14 AC 884 ms
63,752 KB
testcase_15 AC 889 ms
64,000 KB
testcase_16 AC 865 ms
63,984 KB
testcase_17 AC 863 ms
63,976 KB
testcase_18 AC 883 ms
63,764 KB
testcase_19 AC 872 ms
63,988 KB
testcase_20 AC 877 ms
63,960 KB
testcase_21 AC 867 ms
63,916 KB
testcase_22 AC 882 ms
64,040 KB
testcase_23 AC 881 ms
64,032 KB
testcase_24 AC 859 ms
63,872 KB
testcase_25 AC 875 ms
63,836 KB
testcase_26 AC 872 ms
64,172 KB
testcase_27 AC 864 ms
64,080 KB
testcase_28 AC 869 ms
63,972 KB
testcase_29 AC 881 ms
63,860 KB
testcase_30 AC 872 ms
63,804 KB
testcase_31 AC 870 ms
63,808 KB
testcase_32 AC 886 ms
63,948 KB
testcase_33 AC 876 ms
64,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.math._

object Main {
  def main(args: Array[String]) = {
    val sc = new java.util.Scanner(System.in)
    val n, m = sc.nextInt
    val xs = (1 to n).map { _ => sc.nextInt }.toList.sorted

    def rec(m: Int, xs: List[Int]): Int = xs match {
      case Nil => 0
      case (y :: ys) =>
        if (m < y) 0
        else 1 + rec(m - y, ys)
    }
    println(rec(m, xs))
  }
}
0