結果

問題 No.5 数字のブロック
ユーザー kanra661kanra661
提出日時 2014-12-16 16:29:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 5,000 ms
コード長 433 bytes
コンパイル時間 1,687 ms
コンパイル使用メモリ 74,176 KB
実行使用メモリ 59,064 KB
最終ジャッジ日時 2024-11-17 22:10:02
合計ジャッジ時間 7,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
54,040 KB
testcase_01 AC 106 ms
53,028 KB
testcase_02 AC 103 ms
53,976 KB
testcase_03 AC 193 ms
58,456 KB
testcase_04 AC 180 ms
57,328 KB
testcase_05 AC 210 ms
58,396 KB
testcase_06 AC 187 ms
58,100 KB
testcase_07 AC 180 ms
57,472 KB
testcase_08 AC 196 ms
58,748 KB
testcase_09 AC 170 ms
56,724 KB
testcase_10 AC 210 ms
58,928 KB
testcase_11 AC 186 ms
57,748 KB
testcase_12 AC 197 ms
58,164 KB
testcase_13 AC 205 ms
58,936 KB
testcase_14 AC 116 ms
54,520 KB
testcase_15 AC 122 ms
54,136 KB
testcase_16 AC 204 ms
58,420 KB
testcase_17 AC 215 ms
59,028 KB
testcase_18 AC 220 ms
59,064 KB
testcase_19 AC 225 ms
59,028 KB
testcase_20 AC 97 ms
53,156 KB
testcase_21 AC 103 ms
53,848 KB
testcase_22 AC 104 ms
54,148 KB
testcase_23 AC 94 ms
53,160 KB
testcase_24 AC 123 ms
53,964 KB
testcase_25 AC 147 ms
54,632 KB
testcase_26 AC 105 ms
54,128 KB
testcase_27 AC 92 ms
54,140 KB
testcase_28 AC 95 ms
52,756 KB
testcase_29 AC 181 ms
57,340 KB
testcase_30 AC 170 ms
56,864 KB
testcase_31 AC 105 ms
54,104 KB
testcase_32 AC 96 ms
53,076 KB
testcase_33 AC 102 ms
53,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		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 now_wide = 0;
		int i = 0;
		while(n>i){
			now_wide += w[i];
			if(now_wide > l){
				break;
			}
			i++;
		}
		System.out.println(i);
	}
}
0