結果

問題 No.5 数字のブロック
ユーザー kou6839kou6839
提出日時 2014-11-08 16:24:41
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 1,863 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 47,868 KB
最終ジャッジ日時 2024-06-10 01:47:56
合計ジャッジ時間 8,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 103 ms
40,404 KB
testcase_02 AC 103 ms
40,740 KB
testcase_03 AC 208 ms
47,084 KB
testcase_04 AC 196 ms
46,784 KB
testcase_05 AC 228 ms
46,424 KB
testcase_06 AC 202 ms
46,624 KB
testcase_07 AC 200 ms
46,340 KB
testcase_08 AC 208 ms
46,552 KB
testcase_09 AC 181 ms
43,892 KB
testcase_10 AC 219 ms
47,024 KB
testcase_11 AC 190 ms
45,880 KB
testcase_12 AC 211 ms
46,896 KB
testcase_13 AC 215 ms
46,808 KB
testcase_14 AC 119 ms
41,496 KB
testcase_15 AC 134 ms
41,600 KB
testcase_16 AC 218 ms
47,148 KB
testcase_17 AC 239 ms
47,868 KB
testcase_18 AC 229 ms
47,112 KB
testcase_19 AC 230 ms
47,688 KB
testcase_20 AC 101 ms
40,404 KB
testcase_21 AC 104 ms
41,136 KB
testcase_22 AC 109 ms
41,448 KB
testcase_23 AC 116 ms
41,424 KB
testcase_24 AC 147 ms
42,088 KB
testcase_25 AC 148 ms
42,148 KB
testcase_26 AC 106 ms
41,592 KB
testcase_27 AC 107 ms
41,480 KB
testcase_28 AC 107 ms
41,584 KB
testcase_29 AC 192 ms
46,196 KB
testcase_30 AC 167 ms
44,280 KB
testcase_31 AC 99 ms
40,188 KB
testcase_32 AC 98 ms
40,576 KB
testcase_33 AC 108 ms
41,432 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(true){
			sum+=block[iti];
			iti++;
			ans++;
			if(iti==N){
				System.out.println(ans);
				return;
			}else if(sum>L){
				System.out.println(ans-1);
				return;
			}
		}
	}
}	
0