結果

問題 No.5 数字のブロック
ユーザー drump_teitokudrump_teitoku
提出日時 2017-12-22 14:57:49
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 749 bytes
コンパイル時間 2,435 ms
コンパイル使用メモリ 76,132 KB
実行使用メモリ 52,560 KB
最終ジャッジ日時 2024-12-17 23:10:45
合計ジャッジ時間 6,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,104 KB
testcase_01 AC 56 ms
50,312 KB
testcase_02 AC 57 ms
50,336 KB
testcase_03 AC 99 ms
52,000 KB
testcase_04 AC 92 ms
51,564 KB
testcase_05 AC 106 ms
52,432 KB
testcase_06 AC 93 ms
51,472 KB
testcase_07 AC 87 ms
51,456 KB
testcase_08 AC 95 ms
51,836 KB
testcase_09 AC 84 ms
51,460 KB
testcase_10 AC 104 ms
52,560 KB
testcase_11 AC 88 ms
51,592 KB
testcase_12 AC 91 ms
51,940 KB
testcase_13 AC 97 ms
52,068 KB
testcase_14 AC 49 ms
50,148 KB
testcase_15 AC 50 ms
50,404 KB
testcase_16 AC 96 ms
51,832 KB
testcase_17 AC 113 ms
52,040 KB
testcase_18 AC 117 ms
52,192 KB
testcase_19 AC 118 ms
52,516 KB
testcase_20 RE -
testcase_21 AC 51 ms
50,012 KB
testcase_22 RE -
testcase_23 AC 52 ms
50,336 KB
testcase_24 AC 54 ms
50,076 KB
testcase_25 AC 55 ms
50,612 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 90 ms
51,500 KB
testcase_30 AC 82 ms
51,472 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;

public class Main {

	public static void main(String[] args) throws IOException {
		// TODO Auto-generated method stub
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int L = Integer.parseInt(br.readLine());
		int N = Integer.parseInt(br.readLine());
		String s[] = br.readLine().split(" ");
		ArrayList<Integer> w = new ArrayList<Integer>();
		for(int i=0;i<N;i++){
			w.add(Integer.parseInt(s[i]));
		}
		Collections.sort(w);
		int sum=0,result = 0;
		for(;result < L;result++){
			sum+=w.get(result);
			if(sum > L){break;}
		}
		System.out.println(result);
	}

}
0