結果

問題 No.5 数字のブロック
ユーザー kou6839kou6839
提出日時 2014-11-08 16:12:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 2,528 ms
コンパイル使用メモリ 79,072 KB
実行使用メモリ 58,380 KB
最終ジャッジ日時 2024-06-10 01:46:15
合計ジャッジ時間 8,638 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,272 KB
testcase_01 AC 108 ms
41,300 KB
testcase_02 WA -
testcase_03 AC 201 ms
47,212 KB
testcase_04 AC 200 ms
45,544 KB
testcase_05 WA -
testcase_06 AC 195 ms
46,260 KB
testcase_07 AC 201 ms
46,128 KB
testcase_08 AC 209 ms
46,488 KB
testcase_09 AC 178 ms
43,580 KB
testcase_10 AC 216 ms
47,520 KB
testcase_11 AC 198 ms
46,792 KB
testcase_12 AC 211 ms
46,780 KB
testcase_13 AC 230 ms
47,512 KB
testcase_14 AC 128 ms
41,552 KB
testcase_15 WA -
testcase_16 AC 220 ms
47,280 KB
testcase_17 AC 235 ms
47,848 KB
testcase_18 AC 229 ms
48,036 KB
testcase_19 AC 243 ms
48,000 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 92 ms
40,112 KB
testcase_24 AC 132 ms
41,960 KB
testcase_25 AC 153 ms
42,240 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
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