結果

問題 No.5 数字のブロック
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-04 15:21:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 502 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 59,136 KB
最終ジャッジ日時 2024-05-03 22:08:57
合計ジャッジ時間 9,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,132 KB
testcase_01 AC 136 ms
53,964 KB
testcase_02 WA -
testcase_03 AC 250 ms
58,744 KB
testcase_04 AC 228 ms
57,500 KB
testcase_05 WA -
testcase_06 AC 237 ms
57,732 KB
testcase_07 AC 223 ms
57,480 KB
testcase_08 AC 245 ms
58,588 KB
testcase_09 AC 210 ms
56,888 KB
testcase_10 AC 257 ms
58,456 KB
testcase_11 AC 227 ms
57,776 KB
testcase_12 AC 250 ms
58,192 KB
testcase_13 AC 257 ms
58,512 KB
testcase_14 AC 150 ms
54,252 KB
testcase_15 WA -
testcase_16 AC 256 ms
58,088 KB
testcase_17 AC 274 ms
58,720 KB
testcase_18 AC 267 ms
58,448 KB
testcase_19 AC 269 ms
58,432 KB
testcase_20 AC 136 ms
54,200 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 135 ms
54,064 KB
testcase_24 AC 168 ms
54,492 KB
testcase_25 AC 192 ms
54,296 KB
testcase_26 AC 135 ms
54,028 KB
testcase_27 AC 133 ms
54,052 KB
testcase_28 AC 133 ms
54,120 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 131 ms
53,952 KB
testcase_32 AC 133 ms
54,164 KB
testcase_33 AC 132 ms
54,152 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