結果

問題 No.5 数字のブロック
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2015-12-19 23:31:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 241 ms / 5,000 ms
コード長 523 bytes
コンパイル時間 2,124 ms
コンパイル使用メモリ 76,476 KB
実行使用メモリ 59,036 KB
最終ジャッジ日時 2024-11-18 08:00:44
合計ジャッジ時間 8,451 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
53,960 KB
testcase_01 AC 105 ms
53,916 KB
testcase_02 AC 92 ms
52,720 KB
testcase_03 AC 212 ms
58,468 KB
testcase_04 AC 190 ms
57,484 KB
testcase_05 AC 218 ms
58,520 KB
testcase_06 AC 202 ms
58,052 KB
testcase_07 AC 194 ms
57,704 KB
testcase_08 AC 201 ms
58,216 KB
testcase_09 AC 169 ms
56,960 KB
testcase_10 AC 221 ms
58,784 KB
testcase_11 AC 188 ms
57,620 KB
testcase_12 AC 210 ms
58,472 KB
testcase_13 AC 217 ms
58,368 KB
testcase_14 AC 122 ms
54,176 KB
testcase_15 AC 128 ms
54,232 KB
testcase_16 AC 215 ms
58,432 KB
testcase_17 AC 241 ms
58,684 KB
testcase_18 AC 234 ms
59,036 KB
testcase_19 AC 230 ms
58,700 KB
testcase_20 AC 119 ms
54,244 KB
testcase_21 AC 113 ms
53,864 KB
testcase_22 AC 110 ms
53,968 KB
testcase_23 AC 107 ms
54,068 KB
testcase_24 AC 137 ms
54,272 KB
testcase_25 AC 145 ms
54,088 KB
testcase_26 AC 104 ms
54,076 KB
testcase_27 AC 104 ms
54,128 KB
testcase_28 AC 94 ms
52,992 KB
testcase_29 AC 193 ms
57,732 KB
testcase_30 AC 175 ms
56,932 KB
testcase_31 AC 92 ms
52,360 KB
testcase_32 AC 105 ms
53,852 KB
testcase_33 AC 104 ms
53,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
class Main {
    public static void main(String[] args) {
    	
    	Scanner sc = new Scanner(System.in);
    	ArrayList<Integer> W = new ArrayList<>();

    	int L = sc.nextInt();
    	int N = sc.nextInt();
    	for(int i = 0; i < N; i++) {
    		W.add(sc.nextInt());
    	}
    	Collections.sort(W);
    	int i = 0;
    	while(L >= 0 && i < N) {
   	   		L = L - W.get(i);
   	   		if(L >= 0) {
   	   			i++;
   	   		} else {
   	   			break;
   	   		}
    	}
    	System.out.println(i);
    }
}
0