結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,200 KB
testcase_01 AC 124 ms
40,036 KB
testcase_02 AC 141 ms
41,124 KB
testcase_03 AC 274 ms
46,296 KB
testcase_04 AC 245 ms
45,684 KB
testcase_05 AC 284 ms
45,948 KB
testcase_06 AC 256 ms
45,880 KB
testcase_07 AC 251 ms
45,548 KB
testcase_08 AC 270 ms
46,600 KB
testcase_09 AC 220 ms
43,264 KB
testcase_10 AC 290 ms
46,788 KB
testcase_11 AC 247 ms
45,664 KB
testcase_12 AC 263 ms
45,948 KB
testcase_13 AC 278 ms
46,604 KB
testcase_14 AC 163 ms
41,400 KB
testcase_15 AC 188 ms
41,768 KB
testcase_16 AC 286 ms
46,512 KB
testcase_17 AC 293 ms
47,084 KB
testcase_18 AC 294 ms
47,328 KB
testcase_19 AC 295 ms
47,512 KB
testcase_20 RE -
testcase_21 AC 144 ms
41,132 KB
testcase_22 AC 140 ms
41,300 KB
testcase_23 AC 129 ms
39,928 KB
testcase_24 AC 166 ms
41,836 KB
testcase_25 AC 206 ms
41,712 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 258 ms
45,652 KB
testcase_30 AC 231 ms
43,708 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