結果

問題 No.5 数字のブロック
ユーザー Koketti1Koketti1
提出日時 2017-02-04 14:45:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 251 ms / 5,000 ms
コード長 530 bytes
コンパイル時間 2,376 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 47,820 KB
最終ジャッジ日時 2024-11-18 10:53:07
合計ジャッジ時間 8,493 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,224 KB
testcase_01 AC 121 ms
41,784 KB
testcase_02 AC 108 ms
41,304 KB
testcase_03 AC 219 ms
46,724 KB
testcase_04 AC 199 ms
45,728 KB
testcase_05 AC 230 ms
47,152 KB
testcase_06 AC 209 ms
46,096 KB
testcase_07 AC 202 ms
45,668 KB
testcase_08 AC 211 ms
46,740 KB
testcase_09 AC 184 ms
43,428 KB
testcase_10 AC 227 ms
46,956 KB
testcase_11 AC 202 ms
46,340 KB
testcase_12 AC 219 ms
46,784 KB
testcase_13 AC 217 ms
47,244 KB
testcase_14 AC 127 ms
41,748 KB
testcase_15 AC 142 ms
41,572 KB
testcase_16 AC 224 ms
46,268 KB
testcase_17 AC 241 ms
47,660 KB
testcase_18 AC 243 ms
46,848 KB
testcase_19 AC 251 ms
47,820 KB
testcase_20 AC 118 ms
41,376 KB
testcase_21 AC 116 ms
41,572 KB
testcase_22 AC 116 ms
41,260 KB
testcase_23 AC 119 ms
41,384 KB
testcase_24 AC 150 ms
41,724 KB
testcase_25 AC 162 ms
42,240 KB
testcase_26 AC 119 ms
41,504 KB
testcase_27 AC 120 ms
40,288 KB
testcase_28 AC 121 ms
41,456 KB
testcase_29 AC 198 ms
45,552 KB
testcase_30 AC 181 ms
43,860 KB
testcase_31 AC 115 ms
41,280 KB
testcase_32 AC 118 ms
41,320 KB
testcase_33 AC 105 ms
39,988 KB
権限があれば一括ダウンロードができます

ソースコード

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);
		for(int i = 0;i < N;i++){
			sum += a[count];
			count++;
			if(sum>L){
				break;
			}
		}
		if(sum>L){
			count -= 1;
		}
		System.out.println(count);
		
		scanner.close();
	}
}
0