結果

問題 No.5 数字のブロック
ユーザー taku-techtaku-tech
提出日時 2024-09-25 16:00:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 266 ms / 5,000 ms
コード長 1,063 bytes
コンパイル時間 3,757 ms
コンパイル使用メモリ 75,444 KB
実行使用メモリ 58,160 KB
最終ジャッジ日時 2024-09-25 16:01:02
合計ジャッジ時間 11,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,072 KB
testcase_01 AC 117 ms
52,844 KB
testcase_02 AC 131 ms
54,208 KB
testcase_03 AC 248 ms
57,592 KB
testcase_04 AC 217 ms
57,416 KB
testcase_05 AC 258 ms
57,312 KB
testcase_06 AC 236 ms
57,280 KB
testcase_07 AC 230 ms
57,248 KB
testcase_08 AC 236 ms
57,508 KB
testcase_09 AC 229 ms
56,876 KB
testcase_10 AC 259 ms
57,836 KB
testcase_11 AC 223 ms
57,472 KB
testcase_12 AC 249 ms
57,132 KB
testcase_13 AC 242 ms
57,504 KB
testcase_14 AC 153 ms
54,124 KB
testcase_15 AC 165 ms
53,948 KB
testcase_16 AC 255 ms
57,680 KB
testcase_17 AC 264 ms
57,860 KB
testcase_18 AC 259 ms
57,796 KB
testcase_19 AC 266 ms
58,160 KB
testcase_20 AC 133 ms
54,188 KB
testcase_21 AC 131 ms
54,020 KB
testcase_22 AC 133 ms
53,840 KB
testcase_23 AC 133 ms
54,068 KB
testcase_24 AC 163 ms
54,212 KB
testcase_25 AC 187 ms
54,260 KB
testcase_26 AC 132 ms
54,048 KB
testcase_27 AC 137 ms
54,264 KB
testcase_28 AC 132 ms
53,908 KB
testcase_29 AC 222 ms
57,136 KB
testcase_30 AC 212 ms
56,868 KB
testcase_31 AC 132 ms
53,968 KB
testcase_32 AC 132 ms
53,960 KB
testcase_33 AC 136 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no5.view01;

import java.util.PriorityQueue;
import java.util.Queue;
import java.util.Scanner;

/**
 * yukicorder No.5 数字のブロックの解答
 * https://yukicoder.me/problems/no/5
 * @author NAKANISHI
 */
public class Main01 {
	public static void main(String[] args) {
		try(Scanner sc = new Scanner(System.in)){
			
			/*
			 * 入力
			 */
			int length = sc.nextInt();//箱の長さ
			int number = sc.nextInt();//ブロックの数
			
			Queue<Integer> blocks = new PriorityQueue<>();//ブロックをソートして格納する。
			for(int i = 0; i < number; i++){
				blocks.add(sc.nextInt());
			}
			
			/*
			 * 処理
			 */
			int sum = 0;//箱に入れたブロックの合計長
			int count = 0;//箱に入れたブロックの合計数
			//長さがオーバーするまで小さいブロックから順に箱に格納して個数を数える。
			while(blocks.peek() != null){
				sum += blocks.poll();
				if(sum > length) {
					break;
				}
				count++;
			}
			/*
			 *出力
			 */
			System.out.println(count);
		}
	}
}
0