結果

問題 No.5 数字のブロック
ユーザー s1dims1dim
提出日時 2015-09-18 21:58:49
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 792 bytes
コンパイル時間 732 ms
コンパイル使用メモリ 73,672 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 07:35:37
合計ジャッジ時間 1,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
#include<algorithm>
#include<vector>
#include<string>
#include<math.h>

#define REP(i,a,b) for(int i=(a);i<(b);i++)
#define rep(i,n) for(int i=0;i<(n);i++)
#define ALL(i) (i).begin(),(i).end()
#define rALL(i) (i).rbegin(),(i).rend()
#define debug(x) cout<<#x<<": "<<x<<endl
#define pi M_PI

typedef long long ll;
typedef unsigned long long ull;

using namespace std;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
/*-------- code --------*/
    int l, n;
    int t = 0;
    int c = 0;
    int w[10000];

    cin >> l >> n;
    rep(i,n) cin >> w[i];

    sort(w,w+n);
    rep(i,n){
        if(l >= t + w[i]){
            t += w[i];
            c++;
        } else {
            break;
        }
    }

    cout << c << endl;
    return 0;
}
0