結果

問題 No.5 数字のブロック
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-04 15:21:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 502 bytes
コンパイル時間 2,068 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 59,008 KB
最終ジャッジ日時 2024-11-25 02:55:53
合計ジャッジ時間 8,966 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,760 KB
testcase_01 AC 120 ms
53,952 KB
testcase_02 WA -
testcase_03 AC 226 ms
57,760 KB
testcase_04 AC 205 ms
57,440 KB
testcase_05 WA -
testcase_06 AC 221 ms
57,828 KB
testcase_07 AC 196 ms
57,184 KB
testcase_08 AC 222 ms
58,248 KB
testcase_09 AC 173 ms
56,588 KB
testcase_10 AC 234 ms
58,940 KB
testcase_11 AC 201 ms
57,832 KB
testcase_12 AC 215 ms
58,436 KB
testcase_13 AC 240 ms
58,964 KB
testcase_14 AC 133 ms
54,252 KB
testcase_15 WA -
testcase_16 AC 230 ms
58,484 KB
testcase_17 AC 236 ms
58,856 KB
testcase_18 AC 241 ms
58,668 KB
testcase_19 AC 251 ms
59,008 KB
testcase_20 AC 120 ms
53,876 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 120 ms
54,332 KB
testcase_24 AC 149 ms
54,308 KB
testcase_25 AC 152 ms
54,240 KB
testcase_26 AC 107 ms
53,308 KB
testcase_27 AC 119 ms
54,124 KB
testcase_28 AC 107 ms
54,232 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 125 ms
54,276 KB
testcase_32 AC 127 ms
54,296 KB
testcase_33 AC 125 ms
54,040 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