結果

問題 No.5 数字のブロック
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 10:23:17
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 632 bytes
コンパイル時間 3,783 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 47,588 KB
最終ジャッジ日時 2024-07-06 14:18:22
合計ジャッジ時間 12,212 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,960 KB
testcase_01 AC 101 ms
41,304 KB
testcase_02 RE -
testcase_03 AC 330 ms
47,140 KB
testcase_04 AC 246 ms
46,780 KB
testcase_05 AC 393 ms
46,820 KB
testcase_06 AC 282 ms
47,072 KB
testcase_07 AC 268 ms
47,012 KB
testcase_08 AC 304 ms
46,820 KB
testcase_09 AC 179 ms
43,884 KB
testcase_10 AC 391 ms
47,588 KB
testcase_11 AC 243 ms
46,824 KB
testcase_12 AC 330 ms
47,220 KB
testcase_13 AC 364 ms
47,068 KB
testcase_14 AC 121 ms
41,212 KB
testcase_15 AC 121 ms
41,384 KB
testcase_16 AC 384 ms
46,792 KB
testcase_17 AC 452 ms
47,516 KB
testcase_18 AC 423 ms
47,532 KB
testcase_19 AC 492 ms
47,552 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 101 ms
41,016 KB
testcase_24 AC 122 ms
41,452 KB
testcase_25 AC 149 ms
42,288 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 243 ms
46,944 KB
testcase_30 AC 182 ms
43,788 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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;sum <= L;count++) {
			sum += W[count];
		}
		
		System.out.println(count - 1);
	}
}
0