結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,016 KB
testcase_01 AC 137 ms
53,908 KB
testcase_02 AC 136 ms
54,196 KB
testcase_03 AC 267 ms
57,860 KB
testcase_04 AC 240 ms
57,496 KB
testcase_05 AC 283 ms
58,796 KB
testcase_06 AC 253 ms
58,424 KB
testcase_07 AC 240 ms
58,064 KB
testcase_08 AC 262 ms
58,140 KB
testcase_09 AC 222 ms
56,772 KB
testcase_10 AC 288 ms
58,704 KB
testcase_11 AC 240 ms
57,984 KB
testcase_12 AC 271 ms
58,400 KB
testcase_13 AC 272 ms
58,684 KB
testcase_14 AC 149 ms
54,136 KB
testcase_15 AC 162 ms
54,572 KB
testcase_16 AC 280 ms
58,552 KB
testcase_17 AC 294 ms
58,928 KB
testcase_18 AC 286 ms
58,800 KB
testcase_19 AC 304 ms
59,432 KB
testcase_20 AC 139 ms
53,984 KB
testcase_21 AC 141 ms
54,236 KB
testcase_22 AC 138 ms
54,324 KB
testcase_23 AC 138 ms
54,060 KB
testcase_24 AC 160 ms
54,532 KB
testcase_25 AC 196 ms
54,720 KB
testcase_26 AC 137 ms
54,168 KB
testcase_27 AC 135 ms
54,012 KB
testcase_28 AC 135 ms
54,100 KB
testcase_29 AC 244 ms
57,684 KB
testcase_30 AC 223 ms
56,896 KB
testcase_31 AC 139 ms
53,716 KB
testcase_32 AC 138 ms
54,248 KB
testcase_33 AC 134 ms
54,088 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();
    	
    	Integer[] W = new Integer[N];
    	List<Integer> list = new ArrayList<>();
    	
    	for (int i = 0;i < N;i++) {
    		W[i] = Integer.valueOf(sc.nextInt());
    	}
    	Collections.addAll(list,W);
    	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