結果

問題 No.5 数字のブロック
ユーザー cotcotton
提出日時 2018-10-30 05:56:18
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 578 bytes
コンパイル時間 2,486 ms
コンパイル使用メモリ 79,616 KB
実行使用メモリ 55,800 KB
最終ジャッジ日時 2024-11-19 10:29:19
合計ジャッジ時間 9,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 12 RE * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
public class Main{
	public static void main(String[] args) {
		Scanner sc1 = new Scanner(System.in);
		int n = Integer.parseInt(sc1.next());
		Scanner sc2 = new Scanner(System.in);
		int m = Integer.parseInt(sc2.next());
		Scanner sc3 = new Scanner(System.in);
		int[] arr = Arrays.stream(sc3.nextLine().split(" "))
				.mapToInt(Integer::parseInt)
			.toArray();
		Arrays.sort(arr);
		int i = 0;
		int j = 0;
		for(i = 0;  m > 0; i++) {
			j += arr[i];
			if(j > n) {
				break;
			}
			m--;
			}
		System.out.println(i);
	}
}
0