結果

問題 No.5 数字のブロック
ユーザー mits58mits58
提出日時 2016-05-05 14:36:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 237 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 59,156 KB
最終ジャッジ日時 2024-11-18 08:34:13
合計ジャッジ時間 8,308 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,016 KB
testcase_01 AC 122 ms
54,172 KB
testcase_02 AC 115 ms
54,004 KB
testcase_03 AC 215 ms
58,012 KB
testcase_04 AC 195 ms
57,664 KB
testcase_05 AC 223 ms
58,508 KB
testcase_06 AC 203 ms
57,956 KB
testcase_07 AC 199 ms
57,640 KB
testcase_08 AC 209 ms
58,100 KB
testcase_09 AC 173 ms
56,552 KB
testcase_10 AC 222 ms
58,916 KB
testcase_11 AC 195 ms
57,552 KB
testcase_12 AC 207 ms
58,100 KB
testcase_13 AC 226 ms
59,016 KB
testcase_14 AC 123 ms
54,372 KB
testcase_15 AC 134 ms
54,296 KB
testcase_16 AC 220 ms
58,404 KB
testcase_17 AC 237 ms
59,156 KB
testcase_18 AC 232 ms
58,844 KB
testcase_19 AC 234 ms
58,892 KB
testcase_20 AC 113 ms
54,008 KB
testcase_21 AC 103 ms
53,020 KB
testcase_22 AC 115 ms
54,140 KB
testcase_23 AC 99 ms
53,004 KB
testcase_24 AC 135 ms
54,276 KB
testcase_25 AC 158 ms
54,468 KB
testcase_26 AC 112 ms
54,196 KB
testcase_27 AC 114 ms
54,208 KB
testcase_28 AC 114 ms
54,184 KB
testcase_29 AC 192 ms
57,240 KB
testcase_30 AC 180 ms
56,768 KB
testcase_31 AC 112 ms
54,268 KB
testcase_32 AC 104 ms
53,120 KB
testcase_33 AC 111 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main{
	public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	int l=sc.nextInt();
        	int n=sc.nextInt();
        	int[] w=new int[n];
        	for(int i=0;i<n;i++) w[i]=sc.nextInt();
        	Arrays.sort(w);
        	int res=0;
        	int sum=0;
        	for(int i=0;i<n;i++){
        		if(sum+w[i]<=l){
        			sum+=w[i];
        			res++;
        		}
        	}
        	System.out.println(res);
        }
    }
}
0