結果

問題 No.5 数字のブロック
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-13 19:40:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 1,086 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 74,444 KB
実行使用メモリ 59,180 KB
最終ジャッジ日時 2024-11-18 11:42:16
合計ジャッジ時間 8,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,060 KB
testcase_01 AC 120 ms
54,160 KB
testcase_02 AC 119 ms
54,052 KB
testcase_03 AC 221 ms
57,824 KB
testcase_04 AC 201 ms
57,628 KB
testcase_05 AC 233 ms
59,180 KB
testcase_06 AC 205 ms
57,344 KB
testcase_07 AC 193 ms
57,796 KB
testcase_08 AC 214 ms
58,924 KB
testcase_09 AC 179 ms
57,012 KB
testcase_10 AC 233 ms
58,892 KB
testcase_11 AC 202 ms
57,644 KB
testcase_12 AC 220 ms
58,616 KB
testcase_13 AC 231 ms
58,980 KB
testcase_14 AC 132 ms
54,560 KB
testcase_15 AC 147 ms
54,512 KB
testcase_16 AC 238 ms
58,756 KB
testcase_17 AC 235 ms
58,872 KB
testcase_18 AC 242 ms
58,436 KB
testcase_19 AC 249 ms
58,988 KB
testcase_20 AC 119 ms
54,192 KB
testcase_21 AC 120 ms
54,104 KB
testcase_22 AC 121 ms
54,196 KB
testcase_23 AC 116 ms
54,228 KB
testcase_24 AC 143 ms
54,368 KB
testcase_25 AC 164 ms
54,472 KB
testcase_26 AC 117 ms
54,008 KB
testcase_27 AC 119 ms
54,364 KB
testcase_28 AC 108 ms
53,140 KB
testcase_29 AC 203 ms
57,532 KB
testcase_30 AC 181 ms
56,716 KB
testcase_31 AC 116 ms
53,888 KB
testcase_32 AC 117 ms
54,028 KB
testcase_33 AC 118 ms
54,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;

class No5{
       public static void main(String[] args){
              Scanner sc = new Scanner(System.in);
              int hw= sc.nextInt();  
              int n = sc.nextInt();
              int bw[] = new int[n];

              for ( int i=0; i<n; i++ ){   //配列bw[n]に入れていく
                    bw[i] = sc.nextInt();
              }

              Arrays.sort(bw);   //昇順にソート

              int totalBw= 0;
              int count =0;
              for ( int k=0; k<n; k++ ){   //変数にbw[0]から足していく
                    if ( totalBw < hw ){
                    totalBw += bw[k];
                    count++;
                    }
              }

             if ( totalBw < hw || totalBw == hw ){  //最後に足して箱の幅一致ならそのまま出力
             System.out.println ( count );
             }
             if ( totalBw > hw ){   //最後に足して箱の幅を越えれば-1して出力
             System.out.println ( count - 1 );
             }

       }
}
0