結果

問題 No.5 数字のブロック
ユーザー 2475057t2475057t
提出日時 2024-10-13 23:00:42
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 684 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 30,080 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 23:00:46
合計ジャッジ時間 3,455 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 160 ms
5,248 KB
testcase_06 WA -
testcase_07 AC 43 ms
5,248 KB
testcase_08 WA -
testcase_09 AC 9 ms
5,248 KB
testcase_10 AC 187 ms
5,248 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 149 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
5,248 KB
testcase_21 WA -
testcase_22 AC 1 ms
5,248 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
5,248 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 12 ms
5,248 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

void sort(int array[], int n){
    
    for(int i=0; i<n; i++){
        for(int j=n; j>i; j--){
            if(array[j] < array[j-1]){
                int tmp = array[j];
                array[j] = array[j-1];
                array[j-1] = tmp;
            }
        }
    }
    
    return;
}

int main()
{
    int L, N;
    scanf("%d", &L);
    scanf("%d", &N);
    int W[N];
    for(int i=0; i<N; i++){
        scanf("%d ", &W[i]);
    }
    
    sort(W, N);
    
    int cnt = 0;
    while(1){
        if(L >= W[cnt]){
            L -= W[cnt];
            cnt++;
        } else {
            break;
        }
    }
    
    printf("%d\n", cnt);

    return 0;
}
0