結果

問題 No.5 数字のブロック
ユーザー ksbaseball
提出日時 2021-04-03 17:17:19
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 471 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 165,080 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-25 03:01:44
合計ジャッジ時間 3,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int box, block;
    cin >> box; cin >> block;
    int b[block];
    for(int i = 0; i < block; i++){
        cin >> b[i];
    }
    
    int total = 0;
    int output = 0;
    
    sort(b, b + block);

    while(total < box){
        total += b[output];
        output += 1; 
    }
    if(total <= box){
        cout << output << endl;
    }
    else{
        cout << output-1 << endl;
    }
    return 0;
}
0