結果

問題 No.5 数字のブロック
ユーザー k_kadorak_kadora
提出日時 2015-05-18 03:16:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 3,527 ms
コンパイル使用メモリ 75,180 KB
実行使用メモリ 53,920 KB
最終ジャッジ日時 2024-07-06 05:19:47
合計ジャッジ時間 9,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 104 ms
41,380 KB
testcase_02 AC 106 ms
41,048 KB
testcase_03 AC 195 ms
45,796 KB
testcase_04 AC 195 ms
45,896 KB
testcase_05 AC 217 ms
47,688 KB
testcase_06 AC 190 ms
46,620 KB
testcase_07 AC 186 ms
45,604 KB
testcase_08 AC 197 ms
46,912 KB
testcase_09 AC 165 ms
43,076 KB
testcase_10 AC 219 ms
47,304 KB
testcase_11 AC 184 ms
46,276 KB
testcase_12 AC 204 ms
46,904 KB
testcase_13 AC 209 ms
47,528 KB
testcase_14 AC 111 ms
41,532 KB
testcase_15 AC 122 ms
41,392 KB
testcase_16 AC 213 ms
47,068 KB
testcase_17 AC 212 ms
46,948 KB
testcase_18 AC 222 ms
48,004 KB
testcase_19 AC 217 ms
47,556 KB
testcase_20 AC 97 ms
40,132 KB
testcase_21 AC 104 ms
41,036 KB
testcase_22 AC 104 ms
41,172 KB
testcase_23 AC 116 ms
41,440 KB
testcase_24 AC 123 ms
41,644 KB
testcase_25 AC 141 ms
42,528 KB
testcase_26 AC 105 ms
41,424 KB
testcase_27 AC 105 ms
41,216 KB
testcase_28 AC 105 ms
41,332 KB
testcase_29 AC 188 ms
46,160 KB
testcase_30 AC 171 ms
44,100 KB
testcase_31 AC 105 ms
40,904 KB
testcase_32 AC 103 ms
41,416 KB
testcase_33 AC 105 ms
41,468 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)c--;
		System.out.println(c);
	}
}
0