結果

問題 No.5 数字のブロック
ユーザー SagTokiSagToki
提出日時 2018-05-02 13:56:09
言語 Java
(openjdk 23)
結果
AC  
実行時間 278 ms / 5,000 ms
コード長 955 bytes
コンパイル時間 3,840 ms
コンパイル使用メモリ 74,796 KB
実行使用メモリ 59,004 KB
最終ジャッジ日時 2024-11-18 12:22:28
合計ジャッジ時間 11,988 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,032 KB
testcase_01 AC 136 ms
54,088 KB
testcase_02 AC 135 ms
54,056 KB
testcase_03 AC 249 ms
58,064 KB
testcase_04 AC 224 ms
57,128 KB
testcase_05 AC 265 ms
58,672 KB
testcase_06 AC 239 ms
57,428 KB
testcase_07 AC 237 ms
57,452 KB
testcase_08 AC 242 ms
58,124 KB
testcase_09 AC 211 ms
56,548 KB
testcase_10 AC 264 ms
57,956 KB
testcase_11 AC 232 ms
57,360 KB
testcase_12 AC 251 ms
58,232 KB
testcase_13 AC 256 ms
58,828 KB
testcase_14 AC 145 ms
54,316 KB
testcase_15 AC 163 ms
54,200 KB
testcase_16 AC 261 ms
58,032 KB
testcase_17 AC 275 ms
58,488 KB
testcase_18 AC 269 ms
58,472 KB
testcase_19 AC 278 ms
59,004 KB
testcase_20 AC 139 ms
54,040 KB
testcase_21 AC 139 ms
54,000 KB
testcase_22 AC 133 ms
54,276 KB
testcase_23 AC 136 ms
54,168 KB
testcase_24 AC 163 ms
54,420 KB
testcase_25 AC 188 ms
54,244 KB
testcase_26 AC 140 ms
54,276 KB
testcase_27 AC 139 ms
54,332 KB
testcase_28 AC 134 ms
54,036 KB
testcase_29 AC 226 ms
57,428 KB
testcase_30 AC 207 ms
56,672 KB
testcase_31 AC 136 ms
54,448 KB
testcase_32 AC 136 ms
54,220 KB
testcase_33 AC 136 ms
54,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
import java.util.*;
/**
 *
 * @author tokio
 */
public class suuzi {
    public static void main(String[] args){
        Scanner scanner = new Scanner(System.in);
        int L = scanner.nextInt();
        int N = scanner.nextInt();
        int[] W = new int[N];
        int sum = 0;
        int count = 0;
        
        for(int i=0 ; i<N ; i++){
            W[i] = scanner.nextInt();
        }
       
        Arrays.sort(W);
        
       
        //while(L >= sum){
           // sum += W[i];
           // i++;
       // }
       for(int i = 0 ; i < N ; i++){
           if(L >= sum + W[i]){
             sum += W[i];
               count++;
           }else{
               break;
           }
       }
    
        System.out.println(count);
        
    }
}
0