結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
39,972 KB
testcase_01 AC 102 ms
41,520 KB
testcase_02 WA -
testcase_03 AC 198 ms
46,556 KB
testcase_04 AC 185 ms
45,600 KB
testcase_05 WA -
testcase_06 AC 195 ms
46,692 KB
testcase_07 AC 189 ms
46,032 KB
testcase_08 AC 203 ms
46,876 KB
testcase_09 AC 162 ms
43,976 KB
testcase_10 AC 214 ms
47,720 KB
testcase_11 AC 174 ms
46,152 KB
testcase_12 AC 205 ms
45,888 KB
testcase_13 AC 206 ms
46,372 KB
testcase_14 AC 111 ms
41,488 KB
testcase_15 WA -
testcase_16 AC 213 ms
46,880 KB
testcase_17 AC 224 ms
47,848 KB
testcase_18 AC 217 ms
47,728 KB
testcase_19 AC 229 ms
47,852 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 102 ms
41,688 KB
testcase_24 AC 121 ms
41,504 KB
testcase_25 AC 145 ms
41,872 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

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){
			l = l - a[i];
			i++;
			c++;
		}
		c--;
		System.out.println(c);
	}
}
0