結果

問題 No.5 数字のブロック
ユーザー scachescache
提出日時 2014-10-01 02:00:46
言語 Java
(openjdk 23)
結果
AC  
実行時間 246 ms / 5,000 ms
コード長 519 bytes
コンパイル時間 1,812 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 60,052 KB
最終ジャッジ日時 2024-11-17 21:58:41
合計ジャッジ時間 8,598 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Main p = new Main();
	}

	public Main() {
		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;i++)
			w[i] = sc.nextInt();
		System.out.println(solve(l, w));
	}

	public int solve(int l, int[] w) {
		Arrays.sort(w);
		
		for(int i=0;i<w.length;i++){
			l -= w[i];
			if(l<0)
				return i;			
		}
		
		return w.length;
	}

}
0