結果

問題 No.5 数字のブロック
ユーザー kashiwagi513
提出日時 2019-02-19 20:22:24
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 693 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 76,604 KB
実行使用メモリ 47,976 KB
最終ジャッジ日時 2024-10-12 18:28:31
合計ジャッジ時間 9,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27 WA * 7
権限があれば一括ダウンロードができます

ソースコード

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