結果

問題 No.5 数字のブロック
ユーザー ajukinkinajukinkin
提出日時 2016-07-07 15:52:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,225 bytes
コンパイル時間 3,289 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 52,668 KB
最終ジャッジ日時 2024-10-12 23:07:38
合計ジャッジ時間 6,944 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,408 KB
testcase_01 AC 51 ms
50,396 KB
testcase_02 WA -
testcase_03 AC 98 ms
52,420 KB
testcase_04 AC 80 ms
51,644 KB
testcase_05 AC 103 ms
52,424 KB
testcase_06 AC 80 ms
51,340 KB
testcase_07 AC 81 ms
51,300 KB
testcase_08 AC 103 ms
51,512 KB
testcase_09 AC 64 ms
50,964 KB
testcase_10 AC 90 ms
51,832 KB
testcase_11 AC 84 ms
51,196 KB
testcase_12 AC 90 ms
52,668 KB
testcase_13 AC 99 ms
51,648 KB
testcase_14 AC 53 ms
50,432 KB
testcase_15 AC 55 ms
50,076 KB
testcase_16 AC 104 ms
52,468 KB
testcase_17 AC 105 ms
52,644 KB
testcase_18 AC 107 ms
52,652 KB
testcase_19 AC 107 ms
52,548 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 53 ms
50,436 KB
testcase_24 AC 55 ms
50,208 KB
testcase_25 AC 55 ms
50,432 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 78 ms
51,500 KB
testcase_30 AC 62 ms
50,760 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = 0; // 箱の個数
      for (int i = 0; i < strBoxWidths.length; i++) {
          if (width + boxWidths[i] > boxLength) {
            boxNum = i;
            break;
          }
          width += boxWidths[i];
      }
      
      // 結果出力
      System.out.println(boxNum);
    } catch (Throwable th) {
      th.printStackTrace();
    }
   }
}
0