結果

問題 No.5 数字のブロック
ユーザー HaijinnHaijinn
提出日時 2016-12-24 14:38:17
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 20,864 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 13:08:00
合計ジャッジ時間 3,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 RE -
testcase_25 RE -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
testcase_30 RE -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:22:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   22 | scanf("%d",&l);
      | ^~~~~~~~~~~~~~
main.c:23:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 | scanf("%d",&n);
      | ^~~~~~~~~~~~~~
main.c:25:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   25 |         scanf("%d",&w[i]);
      |         ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void)
{
	int n;
	int a[100];
	int b[100];
	int w[100];
	int i;
	int f;
	int d=0;
	int j=0;
	int k=0;
	int r=0;
	int p;
	int l;
	int q=0;
	int temp;



scanf("%d",&l);
scanf("%d",&n);
for(i=0;i<n;i++){
	scanf("%d",&w[i]);
}

for(j=0;j<n-1;j++){
	for(p=n-1;p>j;p--){
		if(w[p-1]>w[p]){
			temp=w[p];
			w[p]=w[p-1];
			w[p-1]=temp;
		}
	}
}
for(f=0;f<n;f++){
printf("%d\n",w[f]);
d+=w[f];q++;
	if(d>=l){
	break;
}

}
printf("%d\n",q-1);
return 0;
}
0