結果

問題 No.5 数字のブロック
ユーザー kashiwagi513kashiwagi513
提出日時 2019-02-19 20:23:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 694 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 59,104 KB
最終ジャッジ日時 2024-11-18 12:56:43
合計ジャッジ時間 8,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
    public static void main (String[] args) {
        Scanner sc = new Scanner(System.in);
        int wid = Integer.parseInt(sc.next());
        int num = Integer.parseInt(sc.next());
        List<Integer> box = new ArrayList<Integer>();
        for(int i = 0; i < num; i++){
            box.add(Integer.parseInt(sc.next()));
        }
        Collections.sort(box);
        int temp = 0;
        int ct = 0;
        for(Iterator it = box.iterator(); it.hasNext();){
            temp += ((Integer)it.next()).intValue();
            if(temp <= wid) { ct++;  } else {break;}
        }
        System.out.println(ct);
    }
}
0