結果
問題 | No.5 数字のブロック |
ユーザー | r2en_ |
提出日時 | 2017-03-12 01:56:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 432 bytes |
コンパイル時間 | 616 ms |
コンパイル使用メモリ | 69,644 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 10:57:20 |
合計ジャッジ時間 | 1,458 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int main(void){ long long l = 0; cin >> l; int n; cin >> n; long long *w; w = new long long[n]; for(int i = 0; i < n; ++i){cin >> w[i];} long long cnt = 0; long long sum = 0; sort(w,w+n); for(int i = 0; i < n; ++i){ sum += w[i]; if(sum>l){break;} cnt++; } cout << cnt << "\n"; return 0; }