結果

問題 No.5 数字のブロック
ユーザー NaruYNaruY
提出日時 2016-12-09 16:14:13
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 701 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 75,684 KB
実行使用メモリ 60,000 KB
最終ジャッジ日時 2024-11-28 16:20:55
合計ジャッジ時間 10,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
54,200 KB
testcase_01 AC 143 ms
54,212 KB
testcase_02 RE -
testcase_03 AC 257 ms
57,908 KB
testcase_04 AC 232 ms
57,596 KB
testcase_05 AC 278 ms
58,376 KB
testcase_06 AC 237 ms
57,844 KB
testcase_07 AC 241 ms
57,408 KB
testcase_08 AC 258 ms
59,036 KB
testcase_09 AC 219 ms
56,628 KB
testcase_10 AC 275 ms
60,000 KB
testcase_11 AC 237 ms
57,696 KB
testcase_12 AC 265 ms
57,980 KB
testcase_13 AC 269 ms
58,616 KB
testcase_14 AC 155 ms
53,996 KB
testcase_15 AC 172 ms
54,468 KB
testcase_16 AC 271 ms
58,456 KB
testcase_17 AC 282 ms
58,788 KB
testcase_18 AC 285 ms
58,652 KB
testcase_19 AC 286 ms
58,716 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 147 ms
54,220 KB
testcase_24 AC 175 ms
54,148 KB
testcase_25 AC 192 ms
54,308 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 235 ms
57,692 KB
testcase_30 AC 222 ms
56,608 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Scanner;
 
public class Main {
    public static void main (String[] args) throws IOException
    {
    	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-1 ; i++){
    		W[i] = sc.nextInt();
    	}
    	
    	Arrays.sort(W);
    	
    	int sum = 0;
    	int ans = 0;
    	for (int j = 0; sum + W[j] <= L ; j++){
    		ans = ans + 1;
    		sum = sum + W[j];
    	}
    	
    	System.out.println(ans);
    }
}
    
0