結果

問題 No.5 数字のブロック
ユーザー discoNekodiscoNeko
提出日時 2016-04-28 23:44:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 761 bytes
コンパイル時間 2,203 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 53,204 KB
最終ジャッジ日時 2024-11-18 08:32:40
合計ジャッジ時間 5,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,368 KB
testcase_01 AC 54 ms
50,496 KB
testcase_02 AC 54 ms
50,460 KB
testcase_03 AC 99 ms
52,064 KB
testcase_04 AC 84 ms
53,204 KB
testcase_05 AC 103 ms
52,636 KB
testcase_06 AC 93 ms
51,340 KB
testcase_07 AC 84 ms
51,296 KB
testcase_08 AC 92 ms
51,432 KB
testcase_09 AC 65 ms
50,904 KB
testcase_10 AC 106 ms
52,424 KB
testcase_11 AC 85 ms
51,756 KB
testcase_12 AC 103 ms
52,512 KB
testcase_13 AC 100 ms
52,396 KB
testcase_14 AC 55 ms
50,412 KB
testcase_15 AC 57 ms
50,592 KB
testcase_16 AC 105 ms
51,892 KB
testcase_17 AC 104 ms
52,424 KB
testcase_18 AC 104 ms
52,580 KB
testcase_19 AC 110 ms
52,568 KB
testcase_20 AC 56 ms
50,352 KB
testcase_21 AC 55 ms
50,368 KB
testcase_22 AC 54 ms
49,960 KB
testcase_23 AC 53 ms
50,368 KB
testcase_24 AC 55 ms
50,128 KB
testcase_25 AC 55 ms
50,468 KB
testcase_26 AC 55 ms
50,100 KB
testcase_27 AC 55 ms
50,496 KB
testcase_28 AC 54 ms
50,160 KB
testcase_29 AC 83 ms
51,004 KB
testcase_30 AC 64 ms
50,772 KB
testcase_31 AC 52 ms
50,324 KB
testcase_32 AC 53 ms
50,424 KB
testcase_33 AC 56 ms
50,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import java.math.*;
 
public class Main {
	public static void main(String[] args)throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		StringBuilder sb = new StringBuilder();
		int l = Integer.parseInt(br.readLine());
		int n = Integer.parseInt(br.readLine());
		String[] str = br.readLine().split(" ");
		int[] w = new int[n];
		for(int i = 0; i < n; i++){
			w[i] = Integer.parseInt(str[i]);
		}
		Arrays.sort(w);
		int sum = 0;
		for(int i = 0; i < n; i++){
			sum += w[i];
			if(sum>l){
				sb.append(i);
				System.out.println(sb);
				return;
			}
		}
		sb.append(n);
		System.out.println(sb);
	}
}
0