結果

問題 No.5 数字のブロック
ユーザー kou6839kou6839
提出日時 2014-11-08 16:29:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 5,000 ms
コード長 568 bytes
コンパイル時間 1,918 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 47,996 KB
最終ジャッジ日時 2024-11-17 22:01:06
合計ジャッジ時間 8,774 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,372 KB
testcase_01 AC 107 ms
40,240 KB
testcase_02 AC 117 ms
41,244 KB
testcase_03 AC 224 ms
46,500 KB
testcase_04 AC 213 ms
45,996 KB
testcase_05 AC 229 ms
47,032 KB
testcase_06 AC 218 ms
46,372 KB
testcase_07 AC 206 ms
45,404 KB
testcase_08 AC 234 ms
46,804 KB
testcase_09 AC 187 ms
43,296 KB
testcase_10 AC 237 ms
47,320 KB
testcase_11 AC 215 ms
45,724 KB
testcase_12 AC 218 ms
46,536 KB
testcase_13 AC 230 ms
47,216 KB
testcase_14 AC 128 ms
41,220 KB
testcase_15 AC 142 ms
41,608 KB
testcase_16 AC 240 ms
46,892 KB
testcase_17 AC 243 ms
47,720 KB
testcase_18 AC 247 ms
46,460 KB
testcase_19 AC 261 ms
47,996 KB
testcase_20 AC 125 ms
41,296 KB
testcase_21 AC 107 ms
40,240 KB
testcase_22 AC 113 ms
41,080 KB
testcase_23 AC 123 ms
41,340 KB
testcase_24 AC 149 ms
41,564 KB
testcase_25 AC 164 ms
42,028 KB
testcase_26 AC 117 ms
41,416 KB
testcase_27 AC 123 ms
41,336 KB
testcase_28 AC 110 ms
40,324 KB
testcase_29 AC 203 ms
45,816 KB
testcase_30 AC 182 ms
43,760 KB
testcase_31 AC 104 ms
40,052 KB
testcase_32 AC 108 ms
40,184 KB
testcase_33 AC 111 ms
40,612 KB
権限があれば一括ダウンロードができます

ソースコード

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++;
			if(iti==N){
				if(sum>L){
					System.out.println(ans-1);
					return;
				}
				System.out.println(ans);
				return;
			}
		}
		System.out.println(ans-1);
	}
}	
0