結果

問題 No.5 数字のブロック
ユーザー monburan_0401monburan_0401
提出日時 2018-08-27 23:21:09
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 314 ms / 5,000 ms
コード長 748 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 30,592 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 12:34:06
合計ジャッジ時間 3,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 110 ms
6,816 KB
testcase_04 AC 74 ms
6,820 KB
testcase_05 AC 191 ms
6,820 KB
testcase_06 AC 75 ms
6,816 KB
testcase_07 AC 50 ms
6,820 KB
testcase_08 AC 99 ms
6,816 KB
testcase_09 AC 12 ms
6,816 KB
testcase_10 AC 221 ms
6,820 KB
testcase_11 AC 48 ms
6,816 KB
testcase_12 AC 124 ms
6,816 KB
testcase_13 AC 181 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 198 ms
6,816 KB
testcase_17 AC 284 ms
6,820 KB
testcase_18 AC 237 ms
6,820 KB
testcase_19 AC 314 ms
6,820 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 1 ms
6,816 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 0 ms
6,820 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 1 ms
6,816 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 69 ms
6,816 KB
testcase_30 AC 16 ms
6,820 KB
testcase_31 AC 1 ms
6,820 KB
testcase_32 AC 1 ms
6,816 KB
testcase_33 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*	数字が書かれているブロックはそれぞれ高さ1で幅は𝑊𝑖 である。
それらのブロックを高さ1,幅Lの箱の中に入れる。
最大でいくつ入るか。 */
#include <stdio.h>
int main(void){
	int L,N;		//	入力値
	int W[10000];
	int i,j;
	int wn;
	int count = 0;
	
	scanf("%d%d",&L,&N);
	for (i = 0; i < N; i++){
		scanf("%d",&wn);
		W[i] = wn;
	}
	
	//	小さい順に並べる
	for (i = 0; i < N - 1; i++){
		for (j = 0; j < N - 1; j++){
			if (W[j] > W[j + 1]){
				wn = W[j];
				W[j] = W[j + 1];
				W[j + 1] = wn;
			}
		}
	}
	
	//	順番にLから引く
	i = 0;
	while (L > 0 && i < N){
		L -= W[i];
		count += 1;
		i += 1;
	}	
	if (L < 0){
		count -= 1;
	}
	
	printf("%d\n",count);
	
	return 0;
}
0