結果

問題 No.5 数字のブロック
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-13 19:34:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,070 bytes
コンパイル時間 2,161 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 47,764 KB
最終ジャッジ日時 2024-11-07 20:02:24
合計ジャッジ時間 9,546 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,140 KB
testcase_01 AC 115 ms
40,232 KB
testcase_02 AC 126 ms
41,492 KB
testcase_03 AC 234 ms
46,332 KB
testcase_04 AC 203 ms
45,512 KB
testcase_05 AC 249 ms
46,992 KB
testcase_06 AC 230 ms
46,016 KB
testcase_07 AC 218 ms
45,820 KB
testcase_08 AC 234 ms
46,460 KB
testcase_09 AC 195 ms
43,632 KB
testcase_10 AC 247 ms
47,352 KB
testcase_11 AC 223 ms
45,972 KB
testcase_12 AC 239 ms
46,320 KB
testcase_13 AC 243 ms
46,628 KB
testcase_14 AC 140 ms
41,476 KB
testcase_15 AC 153 ms
41,368 KB
testcase_16 AC 256 ms
47,036 KB
testcase_17 AC 263 ms
47,588 KB
testcase_18 AC 266 ms
46,928 KB
testcase_19 AC 276 ms
47,764 KB
testcase_20 WA -
testcase_21 AC 127 ms
41,468 KB
testcase_22 AC 127 ms
41,188 KB
testcase_23 AC 130 ms
41,200 KB
testcase_24 AC 152 ms
41,688 KB
testcase_25 AC 174 ms
42,212 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 218 ms
45,700 KB
testcase_30 AC 202 ms
43,660 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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

       }
}
0