結果

問題 No.5 数字のブロック
ユーザー SuunnSuunn
提出日時 2018-11-20 04:45:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 283 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 74,884 KB
実行使用メモリ 49,552 KB
最終ジャッジ日時 2024-11-18 12:43:11
合計ジャッジ時間 10,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
44,312 KB
testcase_01 AC 134 ms
44,456 KB
testcase_02 AC 135 ms
44,560 KB
testcase_03 AC 245 ms
48,060 KB
testcase_04 AC 229 ms
47,232 KB
testcase_05 AC 259 ms
48,168 KB
testcase_06 AC 240 ms
48,228 KB
testcase_07 AC 230 ms
47,844 KB
testcase_08 AC 247 ms
48,036 KB
testcase_09 AC 198 ms
45,556 KB
testcase_10 AC 263 ms
48,736 KB
testcase_11 AC 230 ms
47,600 KB
testcase_12 AC 252 ms
48,292 KB
testcase_13 AC 262 ms
48,764 KB
testcase_14 AC 144 ms
44,728 KB
testcase_15 AC 158 ms
44,480 KB
testcase_16 AC 258 ms
48,232 KB
testcase_17 AC 276 ms
49,552 KB
testcase_18 AC 268 ms
47,912 KB
testcase_19 AC 283 ms
49,348 KB
testcase_20 AC 135 ms
44,484 KB
testcase_21 AC 122 ms
43,076 KB
testcase_22 AC 120 ms
43,416 KB
testcase_23 AC 136 ms
44,616 KB
testcase_24 AC 162 ms
44,712 KB
testcase_25 AC 182 ms
44,468 KB
testcase_26 AC 132 ms
44,548 KB
testcase_27 AC 136 ms
46,268 KB
testcase_28 AC 134 ms
44,348 KB
testcase_29 AC 228 ms
49,456 KB
testcase_30 AC 209 ms
47,376 KB
testcase_31 AC 135 ms
44,760 KB
testcase_32 AC 137 ms
44,752 KB
testcase_33 AC 132 ms
46,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		
		Scanner sc = new Scanner(System.in);
	
		int L = sc.nextInt();
		int N = sc.nextInt();
		int[] W = new int[N];
		for(int i=0;i<N;i++){
			W[i] = sc.nextInt();
		}
		Arrays.sort(W);
		int ans = 0;
		for(int i=0;i<N;i++){
			L -= W[i];
			if(L>=0){
				ans++;
			}
		}
		System.out.println(ans);
	}
	
}
0