結果

問題 No.5 数字のブロック
ユーザー jp_stejp_ste
提出日時 2016-02-16 16:59:23
言語 Java
(openjdk 23)
結果
AC  
実行時間 248 ms / 5,000 ms
コード長 510 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 58,956 KB
最終ジャッジ日時 2024-11-18 08:15:37
合計ジャッジ時間 8,578 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int L = scan.nextInt();
		int N = scan.nextInt();
		int list[] = new int[N];
		for(int i=0; i<N; i++) {
			list[i] = scan.nextInt();
		}
		scan.close();
		
		Arrays.sort(list);
		
		int ans = 0;
		int rem = L;
		for(int i=0; i<N; i++) {
			rem = rem - list[i];
			if(rem >= 0) {
				ans++;
			} else {
				break;
			}
		}
		System.out.println(ans);
	}
}
0