結果

問題 No.5 数字のブロック
ユーザー kou6839kou6839
提出日時 2014-11-08 16:22:00
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 476 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-06-10 01:47:11
合計ジャッジ時間 8,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,216 KB
testcase_01 AC 110 ms
41,088 KB
testcase_02 RE -
testcase_03 AC 199 ms
46,444 KB
testcase_04 AC 199 ms
46,204 KB
testcase_05 AC 228 ms
45,800 KB
testcase_06 AC 204 ms
46,916 KB
testcase_07 AC 212 ms
45,996 KB
testcase_08 AC 207 ms
47,132 KB
testcase_09 AC 168 ms
43,816 KB
testcase_10 AC 214 ms
47,684 KB
testcase_11 AC 201 ms
46,100 KB
testcase_12 AC 213 ms
46,528 KB
testcase_13 AC 225 ms
47,356 KB
testcase_14 AC 121 ms
41,736 KB
testcase_15 AC 140 ms
41,936 KB
testcase_16 AC 222 ms
46,960 KB
testcase_17 AC 229 ms
47,760 KB
testcase_18 AC 230 ms
47,260 KB
testcase_19 AC 243 ms
47,900 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 111 ms
41,360 KB
testcase_24 AC 147 ms
41,904 KB
testcase_25 AC 155 ms
42,068 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 193 ms
45,932 KB
testcase_30 AC 176 ms
44,356 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){
			if(iti<=N){
			sum+=block[iti];
			iti++;
			ans++;
			}else{
				break;
			}
		}
		System.out.println(ans-1);
	}
}	
0