結果

問題 No.5 数字のブロック
ユーザー YamaKasaYamaKasa
提出日時 2018-04-19 15:39:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 5,000 ms
コード長 793 bytes
コンパイル時間 2,774 ms
コンパイル使用メモリ 74,640 KB
実行使用メモリ 59,096 KB
最終ジャッジ日時 2024-11-18 12:18:11
合計ジャッジ時間 10,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,020 KB
testcase_01 AC 125 ms
53,856 KB
testcase_02 AC 130 ms
54,312 KB
testcase_03 AC 242 ms
58,216 KB
testcase_04 AC 219 ms
57,736 KB
testcase_05 AC 253 ms
58,688 KB
testcase_06 AC 234 ms
57,852 KB
testcase_07 AC 203 ms
57,296 KB
testcase_08 AC 236 ms
58,288 KB
testcase_09 AC 193 ms
56,828 KB
testcase_10 AC 260 ms
58,252 KB
testcase_11 AC 222 ms
57,396 KB
testcase_12 AC 231 ms
58,424 KB
testcase_13 AC 237 ms
58,796 KB
testcase_14 AC 140 ms
53,956 KB
testcase_15 AC 150 ms
54,212 KB
testcase_16 AC 242 ms
58,540 KB
testcase_17 AC 272 ms
58,724 KB
testcase_18 AC 265 ms
58,712 KB
testcase_19 AC 264 ms
59,096 KB
testcase_20 AC 121 ms
54,064 KB
testcase_21 AC 112 ms
52,980 KB
testcase_22 AC 129 ms
54,088 KB
testcase_23 AC 129 ms
54,120 KB
testcase_24 AC 156 ms
54,052 KB
testcase_25 AC 167 ms
54,248 KB
testcase_26 AC 122 ms
54,060 KB
testcase_27 AC 123 ms
54,196 KB
testcase_28 AC 128 ms
54,052 KB
testcase_29 AC 205 ms
57,728 KB
testcase_30 AC 204 ms
56,724 KB
testcase_31 AC 132 ms
54,076 KB
testcase_32 AC 132 ms
54,404 KB
testcase_33 AC 132 ms
53,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main{
	public static void main(String[] args) {
		//System.out.println("箱の幅");
		Scanner scanner = new Scanner(System.in);
		int L = scanner.nextInt();
		//System.out.println("ブロックの数");
		int N = scanner.nextInt();
		//System.out.println("各ブロックの幅");
		int[] n = new int[N];	//ブロック
		for(int i = 0; i < N; i++) {
			n[i] = scanner.nextInt();
		}
		scanner.close();
//		BubbleSort bs = new  BubbleSort(n);
//		n = bs.getArrayAsc();
		Arrays.sort(n);
		int k = 0;	//各ブロックを合わせた幅
		int j = 0;	//while文の制御
		for(int i = 0; i < N; i++) {
			k += n[i];
			if(k <= L) {
				j++;
			}else {
				break;
			}
		}
		System.out.println(j);
		//System.out.println(k);
	}
}
0