結果

問題 No.5 数字のブロック
ユーザー HEGO55HEGO55
提出日時 2017-05-09 21:39:16
言語 Java
(openjdk 23)
結果
AC  
実行時間 279 ms / 5,000 ms
コード長 474 bytes
コンパイル時間 2,275 ms
コンパイル使用メモリ 74,728 KB
実行使用メモリ 47,808 KB
最終ジャッジ日時 2024-11-18 11:03:29
合計ジャッジ時間 10,169 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,452 KB
testcase_01 AC 141 ms
41,344 KB
testcase_02 AC 139 ms
41,428 KB
testcase_03 AC 260 ms
46,272 KB
testcase_04 AC 229 ms
45,800 KB
testcase_05 AC 267 ms
47,120 KB
testcase_06 AC 243 ms
46,544 KB
testcase_07 AC 235 ms
45,592 KB
testcase_08 AC 250 ms
47,008 KB
testcase_09 AC 216 ms
43,624 KB
testcase_10 AC 268 ms
47,112 KB
testcase_11 AC 234 ms
46,216 KB
testcase_12 AC 256 ms
46,644 KB
testcase_13 AC 266 ms
47,312 KB
testcase_14 AC 149 ms
41,720 KB
testcase_15 AC 161 ms
42,092 KB
testcase_16 AC 264 ms
46,272 KB
testcase_17 AC 275 ms
47,148 KB
testcase_18 AC 279 ms
47,696 KB
testcase_19 AC 279 ms
47,808 KB
testcase_20 AC 139 ms
41,504 KB
testcase_21 AC 139 ms
41,536 KB
testcase_22 AC 138 ms
41,144 KB
testcase_23 AC 140 ms
41,624 KB
testcase_24 AC 165 ms
41,668 KB
testcase_25 AC 192 ms
42,704 KB
testcase_26 AC 138 ms
41,068 KB
testcase_27 AC 136 ms
41,416 KB
testcase_28 AC 136 ms
41,244 KB
testcase_29 AC 227 ms
45,620 KB
testcase_30 AC 213 ms
43,400 KB
testcase_31 AC 140 ms
41,396 KB
testcase_32 AC 139 ms
41,108 KB
testcase_33 AC 137 ms
41,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Test27{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(); //16
		int W = sc.nextInt(); //3
		int[] num = new int[W]; //0,1,2
		int count = 0;
		
		for(int i=0; i<W; i++){ //i=0,1,2
			num[i] = sc.nextInt(); //num[0]=10 num[1]=5 num[2]=7
		}
		
	    Arrays.sort(num);
				
		for(int m=0; m<num.length; m++){
			N -= num[m];
			if(N>=0){
				count++;
			}
		}
		
		System.out.println(count);
	}
}
0