結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,316 KB
testcase_01 AC 134 ms
41,256 KB
testcase_02 AC 133 ms
41,428 KB
testcase_03 AC 381 ms
47,088 KB
testcase_04 AC 307 ms
46,956 KB
testcase_05 AC 436 ms
47,120 KB
testcase_06 AC 350 ms
47,084 KB
testcase_07 AC 323 ms
46,808 KB
testcase_08 AC 366 ms
46,984 KB
testcase_09 AC 239 ms
43,556 KB
testcase_10 AC 442 ms
47,516 KB
testcase_11 AC 309 ms
47,064 KB
testcase_12 AC 384 ms
46,900 KB
testcase_13 AC 419 ms
46,900 KB
testcase_14 AC 140 ms
41,356 KB
testcase_15 AC 161 ms
41,664 KB
testcase_16 AC 442 ms
47,240 KB
testcase_17 AC 497 ms
47,324 KB
testcase_18 AC 485 ms
47,452 KB
testcase_19 AC 530 ms
47,512 KB
testcase_20 AC 134 ms
41,512 KB
testcase_21 AC 131 ms
41,352 KB
testcase_22 AC 131 ms
41,492 KB
testcase_23 AC 135 ms
41,644 KB
testcase_24 AC 162 ms
41,652 KB
testcase_25 AC 191 ms
42,216 KB
testcase_26 AC 134 ms
41,336 KB
testcase_27 AC 134 ms
41,280 KB
testcase_28 AC 134 ms
41,108 KB
testcase_29 AC 313 ms
46,752 KB
testcase_30 AC 239 ms
43,772 KB
testcase_31 AC 130 ms
41,472 KB
testcase_32 AC 134 ms
41,484 KB
testcase_33 AC 135 ms
41,484 KB
権限があれば一括ダウンロードができます

ソースコード

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