結果

問題 No.5 数字のブロック
ユーザー lrf141lrf141
提出日時 2017-03-06 16:04:04
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,439 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 8,812 ms
コンパイル使用メモリ 266,276 KB
実行使用メモリ 65,756 KB
最終ジャッジ日時 2024-06-29 23:49:59
合計ジャッジ時間 42,196 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 786 ms
64,952 KB
testcase_01 AC 798 ms
65,108 KB
testcase_02 AC 812 ms
65,268 KB
testcase_03 AC 1,101 ms
65,376 KB
testcase_04 AC 1,038 ms
65,608 KB
testcase_05 AC 1,239 ms
65,528 KB
testcase_06 AC 1,039 ms
65,484 KB
testcase_07 AC 954 ms
65,424 KB
testcase_08 AC 1,085 ms
65,472 KB
testcase_09 AC 892 ms
65,592 KB
testcase_10 AC 1,333 ms
65,408 KB
testcase_11 AC 983 ms
65,476 KB
testcase_12 AC 1,136 ms
65,492 KB
testcase_13 AC 1,284 ms
65,744 KB
testcase_14 AC 812 ms
65,292 KB
testcase_15 AC 814 ms
65,148 KB
testcase_16 AC 1,233 ms
65,444 KB
testcase_17 AC 1,374 ms
65,756 KB
testcase_18 AC 1,329 ms
65,672 KB
testcase_19 AC 1,439 ms
65,536 KB
testcase_20 AC 809 ms
65,128 KB
testcase_21 AC 808 ms
65,208 KB
testcase_22 AC 808 ms
65,080 KB
testcase_23 AC 793 ms
65,308 KB
testcase_24 AC 860 ms
65,340 KB
testcase_25 AC 853 ms
65,504 KB
testcase_26 AC 783 ms
65,140 KB
testcase_27 AC 795 ms
65,080 KB
testcase_28 AC 828 ms
65,192 KB
testcase_29 AC 1,020 ms
65,372 KB
testcase_30 AC 901 ms
65,492 KB
testcase_31 AC 814 ms
65,320 KB
testcase_32 AC 813 ms
65,212 KB
testcase_33 AC 801 ms
65,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
import java.io.{BufferedReader,InputStreamReader}
object no5{
    def main(args:Array[String]):Unit={
        val br = new BufferedReader(new InputStreamReader(System.in))
        val w = br.readLine().toInt
        val n = br.readLine().toInt
        val list = br.readLine().split(" ").map(_.toInt).toList.sorted
        val res = for(i <- 1 to n; if list.take(i).sum <= w) yield list(i-1)
        println(res.size)
    }
}
0