結果

問題 No.5 数字のブロック
ユーザー ottfoekstottfoekst
提出日時 2015-02-01 03:08:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,025 bytes
コンパイル時間 3,135 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 52,852 KB
最終ジャッジ日時 2024-06-23 04:45:38
合計ジャッジ時間 6,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,452 KB
testcase_01 AC 49 ms
50,516 KB
testcase_02 WA -
testcase_03 AC 86 ms
51,592 KB
testcase_04 AC 75 ms
51,464 KB
testcase_05 WA -
testcase_06 AC 90 ms
51,552 KB
testcase_07 AC 77 ms
51,528 KB
testcase_08 AC 85 ms
51,768 KB
testcase_09 AC 64 ms
50,688 KB
testcase_10 AC 97 ms
52,308 KB
testcase_11 AC 80 ms
51,080 KB
testcase_12 AC 90 ms
52,484 KB
testcase_13 AC 94 ms
52,572 KB
testcase_14 AC 48 ms
49,740 KB
testcase_15 WA -
testcase_16 AC 95 ms
52,852 KB
testcase_17 AC 93 ms
52,108 KB
testcase_18 AC 93 ms
52,536 KB
testcase_19 AC 95 ms
52,496 KB
testcase_20 RE -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 49 ms
50,100 KB
testcase_24 AC 48 ms
50,340 KB
testcase_25 AC 49 ms
50,512 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

public class No5 {
	
	/**
	 * @param args
	 * @throws IOException 
	 * @throws NumberFormatException 
	 */
	public static void main(String[] args) throws NumberFormatException, IOException {
		
		int boxLength;
		
		// inputの準備
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		boxLength = Integer.parseInt(br.readLine());
		br.readLine();
		String[] blockLengthStringList = br.readLine().split(" ");
		int[] blockLengthList = new int[blockLengthStringList.length];
		for(int i=0; i < blockLengthStringList.length; i++) {
			blockLengthList[i] = Integer.parseInt(blockLengthStringList[i]);
		}
		Arrays.sort(blockLengthList);
		
		// ボックスに最大何個入れられるかを計算
		int insertNum = -1;
		int sumLength = 0;
		for(int i = 0; sumLength < boxLength; i++) {
			sumLength += blockLengthList[i];
			insertNum++;
		}
		System.out.println(insertNum);
	}
}
0