結果

問題 No.5 数字のブロック
ユーザー studypurogurastudypurogura
提出日時 2016-03-18 19:51:54
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 746 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 07:01:40
合計ジャッジ時間 2,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 49 ms
5,376 KB
testcase_04 AC 31 ms
5,376 KB
testcase_05 AC 86 ms
5,376 KB
testcase_06 AC 31 ms
5,376 KB
testcase_07 AC 20 ms
5,376 KB
testcase_08 AC 42 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 104 ms
5,376 KB
testcase_11 AC 18 ms
5,376 KB
testcase_12 AC 54 ms
5,376 KB
testcase_13 AC 83 ms
5,376 KB
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 90 ms
5,376 KB
testcase_17 AC 124 ms
5,376 KB
testcase_18 AC 108 ms
5,376 KB
testcase_19 AC 138 ms
5,376 KB
testcase_20 AC 0 ms
5,376 KB
testcase_21 AC 0 ms
5,376 KB
testcase_22 AC 0 ms
5,376 KB
testcase_23 AC 0 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 0 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 27 ms
5,376 KB
testcase_30 AC 5 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 0 ms
5,376 KB
testcase_33 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:12:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |         scanf("%d",&wd_box);
      |         ^~~~~~~~~~~~~~~~~~~
main.c:13:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |         scanf("%d",&num_block);
      |         ^~~~~~~~~~~~~~~~~~~~~~
main.c:15:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         scanf("%d",&wd_block[i]);
      |         ^~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#define NUM_BLOCK 10000

int bubblesort();

int main(){
	int wd_box,num_block;
	int wd_block[NUM_BLOCK]={0};
	int sum_wd=0;
	int i;
	
	scanf("%d",&wd_box);
	scanf("%d",&num_block);
	for(i=0; i<num_block;i=i+1){
	scanf("%d",&wd_block[i]);
	}
	
	bubblesort(wd_block,num_block);
	
	for(i=0;i<num_block;i++){
	sum_wd += wd_block[i];
		if(sum_wd>wd_box){
			printf("%d\n",i);
			return 0;
		}
	}
	if(sum_wd<=wd_box){
		printf("%d\n",num_block);
	}
	
	return 0;
}

int bubblesort(int wd_block[NUM_BLOCK],int num_block){
	int i,j,baff;
	for(i=0;i<num_block-1;i++){
		for(j=0;j<num_block-1-i;j++){
			if(wd_block[j]>wd_block[j+1]){
			baff = wd_block[j];
			wd_block[j] = wd_block[j+1];
			wd_block[j+1] = baff;
			}
		}
	}
	return 0;
}
0