結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2015-09-18 02:17:04 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 791 bytes |
コンパイル時間 | 667 ms |
コンパイル使用メモリ | 73,536 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-19 06:53:30 |
合計ジャッジ時間 | 1,828 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 27 WA * 7 |
ソースコード
#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; }