結果

問題 No.5 数字のブロック
ユーザー Koketti1Koketti1
提出日時 2017-02-04 14:41:09
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 488 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 58,900 KB
最終ジャッジ日時 2024-06-06 14:13:47
合計ジャッジ時間 8,330 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,064 KB
testcase_01 AC 118 ms
54,176 KB
testcase_02 AC 108 ms
52,804 KB
testcase_03 AC 202 ms
58,528 KB
testcase_04 AC 191 ms
57,152 KB
testcase_05 AC 221 ms
58,900 KB
testcase_06 AC 194 ms
58,004 KB
testcase_07 AC 183 ms
57,696 KB
testcase_08 AC 209 ms
58,680 KB
testcase_09 AC 174 ms
56,888 KB
testcase_10 AC 226 ms
58,648 KB
testcase_11 AC 194 ms
57,532 KB
testcase_12 AC 210 ms
58,276 KB
testcase_13 AC 222 ms
58,204 KB
testcase_14 AC 126 ms
54,456 KB
testcase_15 AC 142 ms
53,600 KB
testcase_16 AC 221 ms
58,424 KB
testcase_17 AC 238 ms
58,564 KB
testcase_18 AC 237 ms
58,804 KB
testcase_19 AC 235 ms
58,816 KB
testcase_20 RE -
testcase_21 AC 113 ms
53,856 KB
testcase_22 AC 109 ms
53,852 KB
testcase_23 AC 112 ms
53,708 KB
testcase_24 AC 144 ms
54,204 KB
testcase_25 AC 156 ms
54,448 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 181 ms
57,304 KB
testcase_30 AC 176 ms
56,612 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
public class Main {
	public static void main(String[] args){
		Scanner scanner = new Scanner(System.in);
		int sum = 0;
		int count = 0;
		int L = scanner.nextInt();
		int N = scanner.nextInt();
		int a[] = new int[N];
		for(int i = 0;i < N;i++){
			a[i] = scanner.nextInt();
		}
		Arrays.sort(a);
		while(sum<L){
			sum += a[count];
			count++;
		}
		if(sum>L){
			count -= 1;
		}
		System.out.println(count);
		
		scanner.close();
	}
}
0