結果

問題 No.5 数字のブロック
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-12 09:48:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 527 ms / 5,000 ms
コード長 952 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 74,068 KB
実行使用メモリ 47,512 KB
最終ジャッジ日時 2024-04-29 10:08:08
合計ジャッジ時間 12,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
39,956 KB
testcase_01 AC 133 ms
41,452 KB
testcase_02 AC 131 ms
40,964 KB
testcase_03 AC 378 ms
46,836 KB
testcase_04 AC 330 ms
46,992 KB
testcase_05 AC 423 ms
46,836 KB
testcase_06 AC 341 ms
46,848 KB
testcase_07 AC 282 ms
45,556 KB
testcase_08 AC 366 ms
46,884 KB
testcase_09 AC 233 ms
43,316 KB
testcase_10 AC 460 ms
47,368 KB
testcase_11 AC 316 ms
46,948 KB
testcase_12 AC 380 ms
46,956 KB
testcase_13 AC 428 ms
46,864 KB
testcase_14 AC 147 ms
41,172 KB
testcase_15 AC 161 ms
41,528 KB
testcase_16 AC 440 ms
46,896 KB
testcase_17 AC 501 ms
47,512 KB
testcase_18 AC 496 ms
47,488 KB
testcase_19 AC 527 ms
47,352 KB
testcase_20 AC 130 ms
41,236 KB
testcase_21 AC 130 ms
41,084 KB
testcase_22 AC 135 ms
40,948 KB
testcase_23 AC 136 ms
41,268 KB
testcase_24 AC 163 ms
41,496 KB
testcase_25 AC 192 ms
42,224 KB
testcase_26 AC 135 ms
41,344 KB
testcase_27 AC 133 ms
40,944 KB
testcase_28 AC 131 ms
40,884 KB
testcase_29 AC 328 ms
46,856 KB
testcase_30 AC 247 ms
43,776 KB
testcase_31 AC 119 ms
40,352 KB
testcase_32 AC 132 ms
41,356 KB
testcase_33 AC 132 ms
41,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.Math;

    public class Main {
        public static void main(String[] args) {
            Scanner sc = new Scanner(System.in);
            
            int l = sc.nextInt();
            int n = sc.nextInt();
            int[] A = new int[n];
            for(int i=0; i<n; i++){
                A[i] = sc.nextInt();
            }
            
            for(int j=0; j<A.length-1; j++){
                for(int k=n-1; k>j; k--){
                    if(A[k] < A[k-1]){
                        int temp = A[k];
                        A[k] = A[k-1];
                        A[k-1] = temp;
                    }
                }
            }
            
            int ans = 0;
            while(ans<n){
                l -= A[ans];
                if(l<0){
                    break;
                }
                ans++;
            }
            
            System.out.println(ans);
        }
    }
0