結果
問題 | No.5 数字のブロック |
ユーザー | hryshtk |
提出日時 | 2015-06-24 23:13:25 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 341 bytes |
コンパイル時間 | 1,278 ms |
コンパイル使用メモリ | 161,880 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-17 22:52:22 |
合計ジャッジ時間 | 2,151 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include <bits/stdc++.h> #define FOR(I,A,B) for(int I=A;I<B;I++) #define ALL(C) C.begin(), C.end() using namespace std; int main() { int L, N; cin >> L >> N; vector<int> W(N); FOR(i,0,N) cin >> W[i]; sort(ALL(W)); int a=0; int s=0; FOR(i,0,N) { s+=W[i]; if ( s > L ) break; a++; } cout << a << endl; return EXIT_SUCCESS; }