結果

問題 No.5 数字のブロック
ユーザー ksbaseball
提出日時 2021-04-03 17:22:42
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 457 bytes
コンパイル時間 4,689 ms
コンパイル使用メモリ 163,448 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-25 03:08:29
合計ジャッジ時間 4,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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(output > block){
            break;
        }
    }
    
    cout << output-1 << endl;
   
    return 0;
}
0