結果

問題 No.5 数字のブロック
ユーザー dogwood0424dogwood0424
提出日時 2017-11-29 20:42:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 276 ms / 5,000 ms
コード長 437 bytes
コンパイル時間 3,558 ms
コンパイル使用メモリ 75,628 KB
実行使用メモリ 47,616 KB
最終ジャッジ日時 2024-04-29 09:29:29
合計ジャッジ時間 11,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,276 KB
testcase_01 AC 117 ms
40,624 KB
testcase_02 AC 135 ms
41,420 KB
testcase_03 AC 245 ms
46,476 KB
testcase_04 AC 222 ms
45,596 KB
testcase_05 AC 251 ms
46,452 KB
testcase_06 AC 242 ms
45,920 KB
testcase_07 AC 229 ms
45,768 KB
testcase_08 AC 235 ms
46,440 KB
testcase_09 AC 198 ms
43,692 KB
testcase_10 AC 254 ms
47,160 KB
testcase_11 AC 222 ms
45,656 KB
testcase_12 AC 252 ms
46,904 KB
testcase_13 AC 251 ms
46,708 KB
testcase_14 AC 141 ms
41,556 KB
testcase_15 AC 158 ms
41,424 KB
testcase_16 AC 256 ms
46,740 KB
testcase_17 AC 269 ms
47,456 KB
testcase_18 AC 269 ms
47,604 KB
testcase_19 AC 276 ms
47,616 KB
testcase_20 AC 132 ms
41,140 KB
testcase_21 AC 132 ms
41,104 KB
testcase_22 AC 128 ms
41,152 KB
testcase_23 AC 122 ms
40,616 KB
testcase_24 AC 162 ms
41,556 KB
testcase_25 AC 176 ms
41,848 KB
testcase_26 AC 115 ms
40,180 KB
testcase_27 AC 118 ms
40,096 KB
testcase_28 AC 132 ms
41,212 KB
testcase_29 AC 226 ms
45,624 KB
testcase_30 AC 209 ms
43,804 KB
testcase_31 AC 131 ms
41,308 KB
testcase_32 AC 130 ms
41,204 KB
testcase_33 AC 127 ms
41,244 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