結果

問題 No.5 数字のブロック
ユーザー ajukinkinajukinkin
提出日時 2016-07-07 16:02:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 1,227 bytes
コンパイル時間 3,977 ms
コンパイル使用メモリ 75,252 KB
実行使用メモリ 52,756 KB
最終ジャッジ日時 2024-11-18 08:44:54
合計ジャッジ時間 6,677 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,520 KB
testcase_01 AC 54 ms
50,384 KB
testcase_02 AC 55 ms
50,020 KB
testcase_03 AC 84 ms
51,624 KB
testcase_04 AC 91 ms
51,400 KB
testcase_05 AC 104 ms
52,756 KB
testcase_06 AC 81 ms
51,840 KB
testcase_07 AC 76 ms
51,580 KB
testcase_08 AC 88 ms
51,828 KB
testcase_09 AC 71 ms
50,832 KB
testcase_10 AC 89 ms
51,868 KB
testcase_11 AC 83 ms
51,316 KB
testcase_12 AC 106 ms
51,888 KB
testcase_13 AC 103 ms
52,660 KB
testcase_14 AC 54 ms
50,104 KB
testcase_15 AC 55 ms
50,412 KB
testcase_16 AC 103 ms
52,628 KB
testcase_17 AC 105 ms
52,516 KB
testcase_18 AC 106 ms
52,720 KB
testcase_19 AC 108 ms
52,564 KB
testcase_20 AC 56 ms
50,496 KB
testcase_21 AC 53 ms
50,520 KB
testcase_22 AC 54 ms
50,480 KB
testcase_23 AC 53 ms
50,476 KB
testcase_24 AC 55 ms
50,580 KB
testcase_25 AC 56 ms
50,388 KB
testcase_26 AC 55 ms
50,488 KB
testcase_27 AC 53 ms
50,184 KB
testcase_28 AC 53 ms
50,416 KB
testcase_29 AC 78 ms
51,428 KB
testcase_30 AC 62 ms
50,688 KB
testcase_31 AC 53 ms
50,424 KB
testcase_32 AC 53 ms
50,328 KB
testcase_33 AC 54 ms
50,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Arrays;

public class Main01 {
  public static void main(String[] args) {
    try {
      InputStreamReader inputStreamReader = new InputStreamReader(System.in);
      BufferedReader bufferedReader = new BufferedReader(inputStreamReader);

      String strBoxLength = bufferedReader.readLine();
      int boxLength = Integer.parseInt(strBoxLength);
      String strBlockNum = bufferedReader.readLine();
      int blockNum = Integer.parseInt(strBlockNum);
      String strBoxsWidth = bufferedReader.readLine();
      String[] strBoxWidths = strBoxsWidth.split(" ");
      int[] boxWidths = new int[strBoxWidths.length];
      for (int i = 0; i < blockNum; i++) {
        boxWidths[i] = Integer.parseInt(strBoxWidths[i]);
      }
      
      // ソート
      Arrays.sort(boxWidths);
      
      int width = 0; // 幅
      int boxNum = 1; // 箱の個数
      for (int i = 0; i < strBoxWidths.length; i++) {
          if (width + boxWidths[i] > boxLength) {
            break;
          }
          boxNum = i + 1;
          width += boxWidths[i];
      }
      
      // 結果出力
      System.out.println(boxNum);
    } catch (Throwable th) {
      th.printStackTrace();
    }
   }
}
0