結果

問題 No.5 数字のブロック
ユーザー lrf141lrf141
提出日時 2017-03-24 09:05:24
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 2,748 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 8,897 ms
コンパイル使用メモリ 274,008 KB
実行使用メモリ 78,628 KB
最終ジャッジ日時 2024-06-30 00:52:53
合計ジャッジ時間 60,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 930 ms
64,436 KB
testcase_01 AC 930 ms
64,504 KB
testcase_02 AC 920 ms
64,372 KB
testcase_03 AC 2,002 ms
78,112 KB
testcase_04 AC 1,433 ms
65,468 KB
testcase_05 AC 2,288 ms
77,164 KB
testcase_06 AC 1,475 ms
65,624 KB
testcase_07 AC 1,371 ms
65,412 KB
testcase_08 AC 1,977 ms
76,968 KB
testcase_09 AC 1,220 ms
65,152 KB
testcase_10 AC 2,388 ms
78,628 KB
testcase_11 AC 1,380 ms
65,452 KB
testcase_12 AC 2,025 ms
77,240 KB
testcase_13 AC 2,310 ms
78,260 KB
testcase_14 AC 1,004 ms
64,928 KB
testcase_15 AC 1,030 ms
65,016 KB
testcase_16 AC 2,410 ms
78,168 KB
testcase_17 AC 2,661 ms
76,928 KB
testcase_18 AC 2,542 ms
78,504 KB
testcase_19 AC 2,748 ms
76,760 KB
testcase_20 AC 958 ms
64,544 KB
testcase_21 AC 959 ms
64,380 KB
testcase_22 AC 958 ms
64,648 KB
testcase_23 AC 961 ms
64,704 KB
testcase_24 AC 1,078 ms
64,944 KB
testcase_25 AC 1,106 ms
65,296 KB
testcase_26 AC 951 ms
64,540 KB
testcase_27 AC 953 ms
64,380 KB
testcase_28 AC 960 ms
64,572 KB
testcase_29 AC 1,460 ms
65,344 KB
testcase_30 AC 1,240 ms
65,108 KB
testcase_31 AC 942 ms
64,548 KB
testcase_32 AC 950 ms
64,564 KB
testcase_33 AC 954 ms
64,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner
import java.io.{BufferedReader,InputStreamReader}
import scala.collection.mutable.ListBuffer
object no5{
    def main(args:Array[String]):Unit={
        val scan = new Scanner(System.in)
        val w = scan.nextInt
        val n = scan.nextInt
        var list:ListBuffer[Int] = ListBuffer[Int]()
        for(i <- 1 to n ) list += scan.nextInt
        list = list.sorted
        val res = for(i <- 1 to n; if list.take(i).sum <= w) yield list(i-1)
        println(res.size)
    }
}
0