結果

問題 No.5 数字のブロック
ユーザー k_kadorak_kadora
提出日時 2015-05-18 03:20:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 252 ms / 5,000 ms
コード長 402 bytes
コンパイル時間 3,144 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 47,912 KB
最終ジャッジ日時 2024-11-17 22:43:37
合計ジャッジ時間 10,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,404 KB
testcase_01 AC 118 ms
40,652 KB
testcase_02 AC 110 ms
40,212 KB
testcase_03 AC 234 ms
46,920 KB
testcase_04 AC 207 ms
45,672 KB
testcase_05 AC 233 ms
47,332 KB
testcase_06 AC 218 ms
46,448 KB
testcase_07 AC 215 ms
46,056 KB
testcase_08 AC 224 ms
46,464 KB
testcase_09 AC 188 ms
43,284 KB
testcase_10 AC 244 ms
47,480 KB
testcase_11 AC 208 ms
45,616 KB
testcase_12 AC 224 ms
46,888 KB
testcase_13 AC 232 ms
46,888 KB
testcase_14 AC 127 ms
41,320 KB
testcase_15 AC 150 ms
42,116 KB
testcase_16 AC 224 ms
46,552 KB
testcase_17 AC 247 ms
47,832 KB
testcase_18 AC 242 ms
46,260 KB
testcase_19 AC 252 ms
47,912 KB
testcase_20 AC 107 ms
40,048 KB
testcase_21 AC 118 ms
41,192 KB
testcase_22 AC 105 ms
39,960 KB
testcase_23 AC 124 ms
41,168 KB
testcase_24 AC 153 ms
41,792 KB
testcase_25 AC 166 ms
41,784 KB
testcase_26 AC 124 ms
41,204 KB
testcase_27 AC 121 ms
41,428 KB
testcase_28 AC 117 ms
41,068 KB
testcase_29 AC 204 ms
45,780 KB
testcase_30 AC 197 ms
43,896 KB
testcase_31 AC 124 ms
41,484 KB
testcase_32 AC 117 ms
41,068 KB
testcase_33 AC 125 ms
41,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Count{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int n = sc.nextInt();
		int[] a = new int[n];
		int c = 0;
		int i;
		for(i = 0;i<n;i++){
			a[i]=sc.nextInt();
		}
		Arrays.sort(a);
		i = 0;
		while((l>=0)&&(i<n)){
			l = l - a[i];
			i++;
			c++;
		}
		if((i!=n)||(l<0))c--;
		System.out.println(c);
	}
}
0