結果

問題 No.5 数字のブロック
ユーザー yun_appyun_app
提出日時 2016-05-09 12:17:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 926 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 76,264 KB
実行使用メモリ 52,476 KB
最終ジャッジ日時 2024-11-18 08:34:48
合計ジャッジ時間 5,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
50,464 KB
testcase_01 AC 48 ms
50,416 KB
testcase_02 AC 47 ms
50,276 KB
testcase_03 AC 79 ms
51,724 KB
testcase_04 AC 78 ms
51,184 KB
testcase_05 AC 91 ms
51,864 KB
testcase_06 AC 79 ms
51,672 KB
testcase_07 AC 83 ms
51,368 KB
testcase_08 AC 84 ms
52,052 KB
testcase_09 AC 64 ms
50,920 KB
testcase_10 AC 93 ms
52,476 KB
testcase_11 AC 73 ms
51,304 KB
testcase_12 AC 85 ms
51,904 KB
testcase_13 AC 88 ms
52,004 KB
testcase_14 AC 49 ms
50,368 KB
testcase_15 AC 50 ms
50,384 KB
testcase_16 AC 91 ms
52,136 KB
testcase_17 AC 93 ms
52,336 KB
testcase_18 AC 104 ms
52,308 KB
testcase_19 AC 113 ms
52,432 KB
testcase_20 AC 49 ms
50,456 KB
testcase_21 AC 47 ms
50,348 KB
testcase_22 AC 48 ms
49,900 KB
testcase_23 AC 48 ms
50,484 KB
testcase_24 AC 49 ms
50,344 KB
testcase_25 AC 52 ms
50,060 KB
testcase_26 AC 48 ms
50,300 KB
testcase_27 AC 48 ms
50,516 KB
testcase_28 AC 49 ms
50,004 KB
testcase_29 AC 79 ms
51,344 KB
testcase_30 AC 63 ms
51,136 KB
testcase_31 AC 49 ms
50,068 KB
testcase_32 AC 49 ms
50,280 KB
testcase_33 AC 49 ms
50,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int max = Integer.parseInt(br.readLine());
        int N   = Integer.parseInt(br.readLine());
        String[] lines = br.readLine().split(" ");
        ArrayList<Integer> list = new ArrayList<Integer>();
        for(String st:lines){
            list.add(Integer.parseInt(st));
        }
        Collections.sort(list);
        int ans = 0;
        for(int i:list){
            max -= i;
            if(max>=0){
                ans++;
            }else{
                break;
            }
        }
        System.out.println(ans);
    }
}
0