結果

問題 No.5 数字のブロック
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 20:42:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 260 ms / 5,000 ms
コード長 437 bytes
コンパイル時間 2,973 ms
コンパイル使用メモリ 75,120 KB
実行使用メモリ 59,068 KB
最終ジャッジ日時 2024-11-18 11:51:08
合計ジャッジ時間 9,793 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,196 KB
testcase_01 AC 116 ms
54,012 KB
testcase_02 AC 111 ms
54,020 KB
testcase_03 AC 230 ms
57,888 KB
testcase_04 AC 199 ms
57,352 KB
testcase_05 AC 234 ms
58,240 KB
testcase_06 AC 212 ms
58,084 KB
testcase_07 AC 208 ms
57,520 KB
testcase_08 AC 219 ms
58,248 KB
testcase_09 AC 173 ms
56,384 KB
testcase_10 AC 231 ms
58,612 KB
testcase_11 AC 202 ms
57,664 KB
testcase_12 AC 229 ms
58,176 KB
testcase_13 AC 219 ms
58,372 KB
testcase_14 AC 134 ms
54,164 KB
testcase_15 AC 148 ms
54,228 KB
testcase_16 AC 240 ms
58,808 KB
testcase_17 AC 249 ms
59,032 KB
testcase_18 AC 260 ms
58,224 KB
testcase_19 AC 252 ms
59,068 KB
testcase_20 AC 121 ms
54,000 KB
testcase_21 AC 117 ms
54,040 KB
testcase_22 AC 105 ms
53,160 KB
testcase_23 AC 119 ms
54,132 KB
testcase_24 AC 151 ms
54,476 KB
testcase_25 AC 162 ms
54,308 KB
testcase_26 AC 102 ms
52,412 KB
testcase_27 AC 114 ms
54,056 KB
testcase_28 AC 116 ms
54,060 KB
testcase_29 AC 198 ms
57,484 KB
testcase_30 AC 185 ms
56,712 KB
testcase_31 AC 125 ms
53,972 KB
testcase_32 AC 124 ms
53,984 KB
testcase_33 AC 103 ms
53,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class No5 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);

		int length = 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 cnt=0;
		for(int j=0;j<n;j++) {
			length = length-w[j];

			if(length<0)	break;

			cnt++ ;

		}

		System.out.println(cnt);

	}

}
0