結果

問題 No.5 数字のブロック
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 18:53:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 353 bytes
コンパイル時間 2,241 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 59,028 KB
最終ジャッジ日時 2024-11-18 10:46:49
合計ジャッジ時間 8,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,312 KB
testcase_01 AC 107 ms
52,880 KB
testcase_02 AC 114 ms
54,160 KB
testcase_03 AC 221 ms
58,004 KB
testcase_04 AC 187 ms
57,340 KB
testcase_05 AC 230 ms
58,460 KB
testcase_06 AC 214 ms
58,608 KB
testcase_07 AC 210 ms
57,648 KB
testcase_08 AC 221 ms
58,352 KB
testcase_09 AC 187 ms
56,748 KB
testcase_10 AC 238 ms
58,444 KB
testcase_11 AC 195 ms
57,412 KB
testcase_12 AC 217 ms
58,312 KB
testcase_13 AC 229 ms
59,028 KB
testcase_14 AC 131 ms
54,012 KB
testcase_15 AC 140 ms
54,388 KB
testcase_16 AC 234 ms
59,016 KB
testcase_17 AC 235 ms
58,888 KB
testcase_18 AC 235 ms
58,500 KB
testcase_19 AC 243 ms
59,004 KB
testcase_20 AC 116 ms
54,276 KB
testcase_21 AC 119 ms
54,164 KB
testcase_22 AC 114 ms
54,300 KB
testcase_23 AC 108 ms
54,240 KB
testcase_24 AC 143 ms
54,112 KB
testcase_25 AC 159 ms
54,564 KB
testcase_26 AC 119 ms
54,000 KB
testcase_27 AC 118 ms
54,252 KB
testcase_28 AC 118 ms
54,144 KB
testcase_29 AC 200 ms
57,424 KB
testcase_30 AC 183 ms
56,688 KB
testcase_31 AC 118 ms
54,128 KB
testcase_32 AC 115 ms
54,068 KB
testcase_33 AC 117 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y5 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int i, s = 0, l = sc.nextInt(), n = sc.nextInt();
		int[] w = new int[n];
		for (i=0; i<w.length; i++)	w[i] = sc.nextInt();
		Arrays.sort(w);
		for (i=0; i<w.length; i++) {
			s += w[i];
			if (s>l)	break;
		}
		System.out.println(i);
	}
}
0