結果

問題 No.5 数字のブロック
ユーザー ikawaiikawai
提出日時 2023-09-05 14:56:40
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 638 bytes
コンパイル時間 3,320 ms
コンパイル使用メモリ 86,372 KB
実行使用メモリ 48,012 KB
最終ジャッジ日時 2024-06-23 10:33:57
合計ジャッジ時間 11,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,392 KB
testcase_01 AC 128 ms
41,300 KB
testcase_02 AC 112 ms
40,268 KB
testcase_03 AC 261 ms
47,292 KB
testcase_04 AC 232 ms
46,324 KB
testcase_05 AC 262 ms
47,004 KB
testcase_06 AC 257 ms
46,192 KB
testcase_07 AC 231 ms
46,100 KB
testcase_08 AC 249 ms
46,528 KB
testcase_09 AC 203 ms
43,632 KB
testcase_10 AC 279 ms
47,668 KB
testcase_11 AC 233 ms
46,468 KB
testcase_12 AC 241 ms
47,384 KB
testcase_13 AC 257 ms
47,128 KB
testcase_14 AC 135 ms
41,660 KB
testcase_15 AC 165 ms
42,200 KB
testcase_16 AC 264 ms
47,264 KB
testcase_17 AC 293 ms
47,700 KB
testcase_18 AC 279 ms
47,884 KB
testcase_19 AC 279 ms
48,012 KB
testcase_20 RE -
testcase_21 AC 123 ms
41,500 KB
testcase_22 AC 136 ms
41,592 KB
testcase_23 AC 125 ms
41,176 KB
testcase_24 AC 162 ms
41,888 KB
testcase_25 AC 178 ms
42,064 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 229 ms
46,420 KB
testcase_30 AC 211 ms
43,716 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.List;
import java.util.Collections;
class Wandbox
{
    public static void main(String[] args)
    {
    	Scanner sc = new Scanner(System.in);
    	
    	List<Integer> list = new ArrayList<>();
    	
    	int l = sc.nextInt();
    	int n = sc.nextInt();
    	
    	for (int i = 0; i < n; i++) {
    		list.add(sc.nextInt());
    	}
    	
    	Collections.sort(list);
    	
    	int sum = 0;
    	int cnt = 0;
    	for (int i = 0; sum < l; i++) {
    		sum += list.get(i);
    		if (sum <= l) {
    			cnt++;
    		} 
    	}
    	
    	System.out.println(cnt);
    }
}
0