結果

問題 No.5 数字のブロック
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-04 15:28:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 282 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 59,084 KB
最終ジャッジ日時 2024-11-18 10:32:39
合計ジャッジ時間 10,076 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,240 KB
testcase_01 AC 134 ms
54,152 KB
testcase_02 AC 136 ms
53,820 KB
testcase_03 AC 248 ms
57,844 KB
testcase_04 AC 226 ms
57,260 KB
testcase_05 AC 263 ms
58,336 KB
testcase_06 AC 242 ms
58,112 KB
testcase_07 AC 232 ms
57,408 KB
testcase_08 AC 251 ms
58,324 KB
testcase_09 AC 212 ms
57,008 KB
testcase_10 AC 267 ms
58,496 KB
testcase_11 AC 234 ms
58,052 KB
testcase_12 AC 254 ms
58,200 KB
testcase_13 AC 257 ms
58,820 KB
testcase_14 AC 149 ms
54,324 KB
testcase_15 AC 160 ms
54,072 KB
testcase_16 AC 253 ms
58,168 KB
testcase_17 AC 275 ms
59,084 KB
testcase_18 AC 266 ms
58,296 KB
testcase_19 AC 282 ms
58,628 KB
testcase_20 AC 139 ms
53,980 KB
testcase_21 AC 138 ms
54,224 KB
testcase_22 AC 131 ms
54,212 KB
testcase_23 AC 131 ms
54,104 KB
testcase_24 AC 164 ms
54,368 KB
testcase_25 AC 192 ms
54,316 KB
testcase_26 AC 137 ms
53,972 KB
testcase_27 AC 134 ms
54,272 KB
testcase_28 AC 139 ms
54,220 KB
testcase_29 AC 228 ms
57,436 KB
testcase_30 AC 210 ms
56,568 KB
testcase_31 AC 140 ms
54,016 KB
testcase_32 AC 140 ms
53,924 KB
testcase_33 AC 136 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Question005
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int width = scan.nextInt();
		int num = scan.nextInt();
		int block[] = new int[num];
		
		for(int i=0; i<num; i++){
			block[i] = scan.nextInt();

		}
		
		Arrays.sort(block);
		
		int cnt=0;
		
		for(int i=0; i<num; i++){
			width = width - block[i];
			if(width < 0){
				continue;
			}
			cnt++;
		}
		
		System.out.println(cnt);
	}
}
0