結果

問題 No.5 数字のブロック
ユーザー nogisunnogisun
提出日時 2020-03-28 16:39:23
言語 Java
(openjdk 23)
結果
AC  
実行時間 266 ms / 5,000 ms
コード長 632 bytes
コンパイル時間 4,676 ms
コンパイル使用メモリ 76,612 KB
実行使用メモリ 59,716 KB
最終ジャッジ日時 2025-01-02 11:44:41
合計ジャッジ時間 11,092 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,164 KB
testcase_01 AC 112 ms
54,128 KB
testcase_02 AC 115 ms
54,292 KB
testcase_03 AC 246 ms
59,164 KB
testcase_04 AC 212 ms
59,220 KB
testcase_05 AC 243 ms
59,356 KB
testcase_06 AC 223 ms
59,476 KB
testcase_07 AC 216 ms
59,716 KB
testcase_08 AC 234 ms
59,336 KB
testcase_09 AC 204 ms
59,076 KB
testcase_10 AC 245 ms
59,364 KB
testcase_11 AC 227 ms
59,160 KB
testcase_12 AC 226 ms
59,488 KB
testcase_13 AC 241 ms
59,508 KB
testcase_14 AC 131 ms
54,220 KB
testcase_15 AC 136 ms
54,860 KB
testcase_16 AC 240 ms
59,592 KB
testcase_17 AC 263 ms
59,640 KB
testcase_18 AC 245 ms
59,576 KB
testcase_19 AC 266 ms
59,648 KB
testcase_20 AC 115 ms
54,280 KB
testcase_21 AC 114 ms
54,276 KB
testcase_22 AC 119 ms
54,272 KB
testcase_23 AC 115 ms
54,140 KB
testcase_24 AC 143 ms
54,792 KB
testcase_25 AC 176 ms
55,628 KB
testcase_26 AC 116 ms
54,400 KB
testcase_27 AC 111 ms
54,352 KB
testcase_28 AC 113 ms
54,272 KB
testcase_29 AC 215 ms
59,316 KB
testcase_30 AC 200 ms
58,452 KB
testcase_31 AC 110 ms
54,144 KB
testcase_32 AC 119 ms
54,144 KB
testcase_33 AC 115 ms
54,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
public class No5{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int haba = sc.nextInt();
        int blockNumber = sc.nextInt();
        int[] blockHaba = new int[blockNumber];
        for (int i=0; i<blockNumber; i++){
            blockHaba[i] = sc.nextInt();
        }
        Arrays.sort(blockHaba);
        int i;
        int sum = 0;
        for (i=0; i<blockNumber; i++){
            sum = sum + blockHaba[i];
            if (sum > haba){
                break;
            }
        }
        System.out.println(i);
    }
}
0