結果

問題 No.5 数字のブロック
ユーザー A63295A63295
提出日時 2015-12-19 13:50:10
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-16 08:56:22
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 68 ms
5,376 KB
testcase_04 AC 16 ms
5,376 KB
testcase_05 AC 109 ms
5,376 KB
testcase_06 AC 46 ms
5,376 KB
testcase_07 AC 31 ms
5,376 KB
testcase_08 AC 55 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 107 ms
5,376 KB
testcase_11 AC 27 ms
5,376 KB
testcase_12 AC 71 ms
5,376 KB
testcase_13 AC 95 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 112 ms
5,376 KB
testcase_17 AC 160 ms
5,376 KB
testcase_18 AC 126 ms
5,376 KB
testcase_19 AC 179 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 0 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 15 ms
5,376 KB
testcase_30 AC 9 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 | scanf("%d%d", &L, &N);
      | ^~~~~~~~~~~~~~~~~~~~~
main.c:8:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 | scanf("%d",&W[i]);
      | ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
int main(void){
int i, j, tmp, L, N;
int W[10000] = {};
scanf("%d%d", &L, &N);

for( i = 0; i < N; i++){
scanf("%d",&W[i]);
}
for( i = 0; i < N - 1; ++i){
	for ( j = i + 1; j < N; ++j){
		if ( W[i] > W[j]){
			tmp = W[i];
			W[i] = W[j];
			W[j] = tmp;
	
		} 
	}
}
int goukei = 0, count = 0;
for ( i = 0; goukei < L; i++){
	goukei += W[i];
	count++;
}
if(goukei > L){
	count--;
}
printf ("%d",count);
return 0;
}
0