結果

問題 No.5 数字のブロック
ユーザー yu_017yu_017
提出日時 2019-01-17 00:30:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 262 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 3,802 ms
コンパイル使用メモリ 74,904 KB
実行使用メモリ 59,004 KB
最終ジャッジ日時 2024-11-18 12:54:32
合計ジャッジ時間 11,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,968 KB
testcase_01 AC 126 ms
54,096 KB
testcase_02 AC 126 ms
53,936 KB
testcase_03 AC 230 ms
58,096 KB
testcase_04 AC 197 ms
57,204 KB
testcase_05 AC 248 ms
58,684 KB
testcase_06 AC 217 ms
57,676 KB
testcase_07 AC 214 ms
57,320 KB
testcase_08 AC 234 ms
58,044 KB
testcase_09 AC 203 ms
56,732 KB
testcase_10 AC 254 ms
57,936 KB
testcase_11 AC 215 ms
57,912 KB
testcase_12 AC 233 ms
58,228 KB
testcase_13 AC 241 ms
58,752 KB
testcase_14 AC 150 ms
54,092 KB
testcase_15 AC 154 ms
53,964 KB
testcase_16 AC 249 ms
58,364 KB
testcase_17 AC 262 ms
58,904 KB
testcase_18 AC 256 ms
58,308 KB
testcase_19 AC 249 ms
59,004 KB
testcase_20 AC 110 ms
53,020 KB
testcase_21 AC 128 ms
54,012 KB
testcase_22 AC 129 ms
53,964 KB
testcase_23 AC 115 ms
52,828 KB
testcase_24 AC 155 ms
54,276 KB
testcase_25 AC 161 ms
54,428 KB
testcase_26 AC 126 ms
54,120 KB
testcase_27 AC 125 ms
53,988 KB
testcase_28 AC 128 ms
54,088 KB
testcase_29 AC 214 ms
57,048 KB
testcase_30 AC 194 ms
56,864 KB
testcase_31 AC 124 ms
54,004 KB
testcase_32 AC 125 ms
53,980 KB
testcase_33 AC 121 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class A000005 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int l = s.nextInt();
		int n = s.nextInt();
		int[] ws = new int[n];
		for(int i=0;i<n;i++) {
			ws[i] = s.nextInt();
		}
		s.close();
		Arrays.sort(ws);
		int r=0;
		for(int w:ws) {
			l-=w;
			if(l<0)break;
			r++;
		}
		System.out.println(r);
	}

}
0