結果

問題 No.5 数字のブロック
ユーザー kou6839kou6839
提出日時 2014-11-08 16:13:15
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 431 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 48,484 KB
最終ジャッジ日時 2024-06-10 01:46:26
合計ジャッジ時間 8,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,728 KB
testcase_01 AC 124 ms
41,608 KB
testcase_02 RE -
testcase_03 AC 205 ms
46,360 KB
testcase_04 AC 187 ms
46,048 KB
testcase_05 AC 235 ms
47,372 KB
testcase_06 AC 202 ms
46,568 KB
testcase_07 AC 179 ms
46,412 KB
testcase_08 AC 208 ms
47,076 KB
testcase_09 AC 171 ms
43,560 KB
testcase_10 AC 221 ms
47,432 KB
testcase_11 AC 195 ms
46,544 KB
testcase_12 AC 216 ms
46,756 KB
testcase_13 AC 218 ms
46,980 KB
testcase_14 AC 120 ms
42,056 KB
testcase_15 AC 137 ms
42,172 KB
testcase_16 AC 223 ms
47,076 KB
testcase_17 AC 225 ms
48,484 KB
testcase_18 AC 223 ms
47,432 KB
testcase_19 AC 241 ms
47,832 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 106 ms
41,336 KB
testcase_24 AC 142 ms
42,268 KB
testcase_25 AC 152 ms
41,804 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 193 ms
46,052 KB
testcase_30 AC 172 ms
44,380 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L=sc.nextInt();
		int N = sc.nextInt();
		int[] block = new int[N];
		for(int i=0;i<N;i++){
			block[i]=sc.nextInt();
		}
		Arrays.sort(block);
		int sum=0;
		int ans=0;
		int iti=0;
		while(sum<=L){
			sum+=block[iti];
			iti++;
			ans++;
		}
		System.out.println(ans-1);
	}
}	
0