結果

問題 No.5 数字のブロック
ユーザー yoshikiriyoshikiri
提出日時 2016-07-15 21:23:10
言語 C90
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 617 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 01:14:48
合計ジャッジ時間 2,945 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 0 ms
5,248 KB
testcase_03 AC 46 ms
5,248 KB
testcase_04 AC 30 ms
5,248 KB
testcase_05 AC 73 ms
5,248 KB
testcase_06 AC 31 ms
5,248 KB
testcase_07 AC 22 ms
5,248 KB
testcase_08 AC 40 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 86 ms
5,248 KB
testcase_11 AC 21 ms
5,248 KB
testcase_12 AC 49 ms
5,248 KB
testcase_13 AC 70 ms
5,248 KB
testcase_14 RE -
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 76 ms
5,248 KB
testcase_17 AC 104 ms
5,248 KB
testcase_18 AC 91 ms
5,248 KB
testcase_19 AC 116 ms
5,248 KB
testcase_20 AC 0 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 0 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 WA -
testcase_26 RE -
testcase_27 AC 0 ms
5,248 KB
testcase_28 RE -
testcase_29 AC 31 ms
5,248 KB
testcase_30 AC 8 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 RE -
testcase_33 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:27:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   27 |         scanf("%d%d",&Len,&N);
      |         ^~~~~~~~~~~~~~~~~~~~~
main.c:31:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   31 |                 scanf("%d",&Wid[i]);
      |                 ^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

void sortarray(int n,int array[]){
	int i,j,min,max,temp;
	int sarray[n];

	for(i=0;i<n;i++){

		for(j=0;j<n;j++){
			if(array[j]<min){
				min = array[j];
				temp = j;
			}
			if(i>0) continue;
			if(array[j]>max) max = array[j];
		}
		sarray[i] = min;
		array[temp] = max + 1;
		min = max;
	}
	for(i=0;i<n;i++) array[i] = sarray[i];
}

int main(void){
	int i,sum=0,ans,Len,N;

	scanf("%d%d",&Len,&N);
	int Wid[N];

	for(i=0;i<N;i++){
		scanf("%d",&Wid[i]);
	}

	sortarray(N,Wid);

	for(i=0;i<N;i++){
		sum += Wid[i];
		if(sum>Len){
		ans = i;
			break;
		}
	}
	
	printf("%d\n",i);

	return 0;
}
0