結果

問題 No.5 数字のブロック
ユーザー ikawaiikawai
提出日時 2023-09-05 14:39:28
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 623 bytes
コンパイル時間 4,417 ms
コンパイル使用メモリ 76,192 KB
実行使用メモリ 56,072 KB
最終ジャッジ日時 2024-06-23 10:18:15
合計ジャッジ時間 11,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,228 KB
testcase_01 AC 131 ms
41,404 KB
testcase_02 RE -
testcase_03 AC 229 ms
47,092 KB
testcase_04 AC 213 ms
45,832 KB
testcase_05 AC 255 ms
47,012 KB
testcase_06 AC 220 ms
46,668 KB
testcase_07 AC 212 ms
46,480 KB
testcase_08 AC 238 ms
46,944 KB
testcase_09 AC 202 ms
43,792 KB
testcase_10 AC 260 ms
47,768 KB
testcase_11 AC 215 ms
46,308 KB
testcase_12 AC 238 ms
46,964 KB
testcase_13 AC 236 ms
47,244 KB
testcase_14 AC 131 ms
41,372 KB
testcase_15 AC 154 ms
41,944 KB
testcase_16 AC 237 ms
47,204 KB
testcase_17 AC 255 ms
48,056 KB
testcase_18 AC 259 ms
48,104 KB
testcase_19 AC 264 ms
47,736 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 125 ms
41,776 KB
testcase_24 AC 160 ms
41,776 KB
testcase_25 AC 167 ms
42,340 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 214 ms
45,956 KB
testcase_30 AC 192 ms
44,304 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();
    	int cnt = 0;
    	
    	for (int i = 0; i < n; i++) {
    		list.add(sc.nextInt());
    	}
    	
    	Collections.sort(list);
    	
    	for (int i = 0; l >= 0; i++) {
    		l -= list.get(i);
    		if (l >= 0) {
    			
    			cnt++;
    		} 
    	}
    	
    	System.out.println(cnt);
    }
}
0