結果

問題 No.5 数字のブロック
ユーザー lrf141lrf141
提出日時 2017-03-24 08:59:29
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 552 bytes
コンパイル時間 9,302 ms
コンパイル使用メモリ 272,660 KB
実行使用メモリ 70,944 KB
最終ジャッジ日時 2024-06-30 00:51:32
合計ジャッジ時間 49,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 909 ms
63,808 KB
testcase_01 AC 920 ms
63,612 KB
testcase_02 RE -
testcase_03 AC 1,235 ms
69,620 KB
testcase_04 AC 1,129 ms
64,464 KB
testcase_05 AC 1,223 ms
70,184 KB
testcase_06 AC 1,113 ms
64,188 KB
testcase_07 AC 1,114 ms
64,508 KB
testcase_08 AC 1,206 ms
69,640 KB
testcase_09 AC 1,052 ms
64,420 KB
testcase_10 AC 1,223 ms
70,544 KB
testcase_11 AC 1,115 ms
64,508 KB
testcase_12 AC 1,213 ms
70,836 KB
testcase_13 AC 1,223 ms
69,784 KB
testcase_14 AC 920 ms
63,488 KB
testcase_15 AC 941 ms
63,992 KB
testcase_16 AC 1,219 ms
69,624 KB
testcase_17 AC 1,221 ms
70,752 KB
testcase_18 AC 1,221 ms
69,656 KB
testcase_19 AC 1,211 ms
70,944 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 926 ms
63,560 KB
testcase_24 AC 969 ms
63,924 KB
testcase_25 AC 996 ms
64,316 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 1,094 ms
64,356 KB
testcase_30 AC 1,027 ms
64,288 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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
        var res = 0
        var sum = 0
        while(sum <= w){
            sum += list(res)
            res += 1
        }
        println(res-1)
    }
}
0