結果
問題 | No.5 数字のブロック |
ユーザー | btk |
提出日時 | 2015-05-02 11:45:44 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 260 bytes |
コンパイル時間 | 613 ms |
コンパイル使用メモリ | 59,956 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 22:41:19 |
合計ジャッジ時間 | 1,364 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include<iostream> #include<algorithm> using namespace std; int main(void){ int N,L; int w[10000]; cin>>L>>N; for(int i=0;i<N;i++)cin>>w[i]; sort(w,w+N); int sum=0; int cnt=0; for(int i=0;i<N&&sum+w[i]<=L;i++){ cnt++; sum+=w[i]; } cout<<cnt<<endl; return 0; }