結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,392 KB
testcase_01 AC 107 ms
41,164 KB
testcase_02 AC 118 ms
41,472 KB
testcase_03 AC 221 ms
46,788 KB
testcase_04 AC 201 ms
45,532 KB
testcase_05 AC 225 ms
47,976 KB
testcase_06 AC 213 ms
46,072 KB
testcase_07 AC 204 ms
46,004 KB
testcase_08 AC 226 ms
46,736 KB
testcase_09 AC 180 ms
43,468 KB
testcase_10 AC 234 ms
47,460 KB
testcase_11 AC 202 ms
46,416 KB
testcase_12 AC 229 ms
46,556 KB
testcase_13 AC 233 ms
47,320 KB
testcase_14 AC 135 ms
41,524 KB
testcase_15 AC 141 ms
41,548 KB
testcase_16 AC 237 ms
47,044 KB
testcase_17 AC 252 ms
47,188 KB
testcase_18 AC 242 ms
46,924 KB
testcase_19 AC 248 ms
47,708 KB
testcase_20 AC 121 ms
41,568 KB
testcase_21 AC 120 ms
41,360 KB
testcase_22 AC 125 ms
41,400 KB
testcase_23 AC 115 ms
41,488 KB
testcase_24 AC 141 ms
41,692 KB
testcase_25 AC 149 ms
42,080 KB
testcase_26 AC 114 ms
41,516 KB
testcase_27 AC 116 ms
41,488 KB
testcase_28 AC 117 ms
41,284 KB
testcase_29 AC 209 ms
45,684 KB
testcase_30 AC 190 ms
43,956 KB
testcase_31 AC 109 ms
40,208 KB
testcase_32 AC 109 ms
40,052 KB
testcase_33 AC 108 ms
41,716 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