結果

問題 No.5 数字のブロック
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 10:42:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 530 ms / 5,000 ms
コード長 663 bytes
コンパイル時間 3,696 ms
コンパイル使用メモリ 75,100 KB
実行使用メモリ 47,516 KB
最終ジャッジ日時 2024-11-18 12:04:53
合計ジャッジ時間 13,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No5 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int L = sc.nextInt(); //箱の幅
		int N = sc.nextInt(); //ブロックの数
		int W[] = new int[N]; //各ブロックの幅
		int x;
		int sum = 0;
		int count;
		
		for(int i = 0;i < N;i++) {
			W[i] = sc.nextInt();
		}
		
		for(int i = 0;i < N;i++) { //Wを昇順にソート
			for(int j = i + 1;j < N;j++) {
				if(W[i] > W[j]) {
					x = W[i];
					W[i] = W[j];
					W[j] = x;
				}
			}
		}
		
		for(count = 0;count < N;count++) {
			sum += W[count];
			if(sum > L) {
				break;
			}
		}
		
		System.out.println(count);
	}
}
0