結果

問題 No.5 数字のブロック
ユーザー Toshihiko YanaseToshihiko Yanase
提出日時 2018-04-29 21:08:14
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 463 bytes
コンパイル時間 881 ms
コンパイル使用メモリ 64,740 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 12:20:58
合計ジャッジ時間 1,638 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;


int main() {
  std::cin.tie(0);
  std::ios::sync_with_stdio(false);

  int L, N;
  cin >> L >> N;

  vector<int> w(N);
  for(int i=0;i<N;i++){
    cin >> w.at(i);
  }
  
  sort(w.begin(), w.end());
  int ans = 0;
  int sum = 0;
  for(int i=0;i<N;i++){
    if (sum + w[i] <= L){
      sum += w[i];
    }else{
      break;
    }
    ans++;
  }
  cout << ans << endl;

  return 0;
}
0