結果

問題 No.5 数字のブロック
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-22 12:23:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 641 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 86,788 KB
実行使用メモリ 59,172 KB
最終ジャッジ日時 2024-11-18 10:23:32
合計ジャッジ時間 10,381 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,160 KB
testcase_01 AC 137 ms
54,156 KB
testcase_02 AC 135 ms
54,324 KB
testcase_03 AC 268 ms
58,740 KB
testcase_04 AC 230 ms
58,196 KB
testcase_05 AC 278 ms
58,624 KB
testcase_06 AC 254 ms
58,600 KB
testcase_07 AC 241 ms
57,708 KB
testcase_08 AC 258 ms
58,468 KB
testcase_09 AC 215 ms
56,952 KB
testcase_10 AC 288 ms
59,008 KB
testcase_11 AC 238 ms
57,924 KB
testcase_12 AC 267 ms
58,056 KB
testcase_13 AC 275 ms
58,412 KB
testcase_14 AC 152 ms
54,200 KB
testcase_15 AC 159 ms
54,144 KB
testcase_16 AC 284 ms
58,636 KB
testcase_17 AC 308 ms
58,792 KB
testcase_18 AC 283 ms
59,172 KB
testcase_19 AC 306 ms
58,900 KB
testcase_20 AC 137 ms
54,100 KB
testcase_21 AC 136 ms
54,088 KB
testcase_22 AC 135 ms
54,208 KB
testcase_23 AC 134 ms
53,956 KB
testcase_24 AC 175 ms
54,352 KB
testcase_25 AC 192 ms
54,496 KB
testcase_26 AC 141 ms
53,984 KB
testcase_27 AC 139 ms
53,972 KB
testcase_28 AC 139 ms
54,340 KB
testcase_29 AC 246 ms
57,512 KB
testcase_30 AC 222 ms
56,588 KB
testcase_31 AC 139 ms
54,160 KB
testcase_32 AC 139 ms
54,072 KB
testcase_33 AC 139 ms
53,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		Scanner sc = new Scanner(System.in);
    	int L = sc.nextInt();
    	int N = sc.nextInt();
    	
    	List<Integer> list = new ArrayList<>();
    	for (int i = 0;i < N;i++) {
    		list.add(sc.nextInt());
    	}
    	list.sort((s1, s2) -> s1.compareTo(s2));
    	int sum =0;
    	int count = 0;
    	for (Integer I:list) {
    		sum += I;
    		if (0 <= L - sum) count++;
    	}
    	System.out.println(count);
	}
}
0