結果

問題 No.5 数字のブロック
ユーザー hippolover02hippolover02
提出日時 2022-07-23 10:44:39
言語 Java
(openjdk 23)
結果
AC  
実行時間 267 ms / 5,000 ms
コード長 603 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 47,828 KB
最終ジャッジ日時 2024-07-04 21:44:54
合計ジャッジ時間 9,269 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int box = sc.nextInt();
        int num = sc.nextInt();
        int[] width = new int[num];
        
        for(int i=0; i<num; i++){
            width[i] = sc.nextInt();
        }
        Arrays.sort(width);
        int tmp = 0;
        int r = 0;
        
        for(int n : width){
            tmp += n;
            if(box >= tmp){
                r++;
            } else {
                break;
            }
        }
        System.out.println(r);
    }
}
0