結果

問題 No.5 数字のブロック
ユーザー m2543315647m2543315647
提出日時 2015-05-13 08:40:08
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 430 bytes
コンパイル時間 3,391 ms
コンパイル使用メモリ 75,428 KB
実行使用メモリ 47,836 KB
最終ジャッジ日時 2024-07-06 01:00:53
合計ジャッジ時間 10,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,168 KB
testcase_01 AC 105 ms
41,072 KB
testcase_02 AC 104 ms
41,308 KB
testcase_03 AC 218 ms
46,636 KB
testcase_04 AC 189 ms
45,628 KB
testcase_05 AC 228 ms
46,376 KB
testcase_06 AC 206 ms
46,412 KB
testcase_07 AC 195 ms
45,592 KB
testcase_08 AC 212 ms
46,528 KB
testcase_09 AC 177 ms
43,468 KB
testcase_10 AC 225 ms
47,540 KB
testcase_11 AC 195 ms
45,384 KB
testcase_12 AC 216 ms
46,456 KB
testcase_13 AC 221 ms
46,900 KB
testcase_14 AC 118 ms
41,452 KB
testcase_15 AC 143 ms
41,948 KB
testcase_16 AC 223 ms
46,612 KB
testcase_17 AC 228 ms
47,836 KB
testcase_18 AC 228 ms
47,624 KB
testcase_19 AC 226 ms
47,668 KB
testcase_20 WA -
testcase_21 AC 106 ms
40,960 KB
testcase_22 WA -
testcase_23 AC 105 ms
41,036 KB
testcase_24 AC 135 ms
41,604 KB
testcase_25 AC 151 ms
41,924 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 191 ms
45,708 KB
testcase_30 AC 177 ms
43,688 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class No5 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int l=sc.nextInt();
		int n=sc.nextInt();
		int[] w=new int[n];
		int sum=0;
		for(int i=0;i<n;i++)
			w[i]=sc.nextInt();
		Arrays.sort(w);
		for(int i=0;i<n;i++)
		{
			sum+=w[i];
			if(sum>l)
			{
				System.out.println(i);
				return;
			}
		}
		System.out.println(l);
	}
}
0