結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,264 KB
testcase_01 AC 133 ms
54,132 KB
testcase_02 AC 134 ms
54,160 KB
testcase_03 AC 368 ms
58,768 KB
testcase_04 AC 319 ms
58,888 KB
testcase_05 AC 425 ms
58,752 KB
testcase_06 AC 344 ms
58,712 KB
testcase_07 AC 307 ms
58,816 KB
testcase_08 AC 368 ms
58,800 KB
testcase_09 AC 241 ms
56,888 KB
testcase_10 AC 456 ms
58,656 KB
testcase_11 AC 308 ms
58,768 KB
testcase_12 AC 382 ms
58,500 KB
testcase_13 AC 423 ms
58,876 KB
testcase_14 AC 143 ms
54,108 KB
testcase_15 AC 160 ms
54,148 KB
testcase_16 AC 434 ms
58,816 KB
testcase_17 AC 483 ms
58,784 KB
testcase_18 AC 461 ms
58,720 KB
testcase_19 AC 511 ms
58,812 KB
testcase_20 AC 137 ms
53,964 KB
testcase_21 AC 135 ms
53,876 KB
testcase_22 AC 133 ms
54,000 KB
testcase_23 AC 133 ms
54,140 KB
testcase_24 AC 161 ms
53,976 KB
testcase_25 AC 196 ms
54,460 KB
testcase_26 AC 133 ms
53,844 KB
testcase_27 AC 134 ms
54,000 KB
testcase_28 AC 132 ms
54,124 KB
testcase_29 AC 322 ms
58,684 KB
testcase_30 AC 249 ms
56,888 KB
testcase_31 AC 135 ms
54,124 KB
testcase_32 AC 133 ms
54,168 KB
testcase_33 AC 134 ms
53,936 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