結果
問題 | No.5 数字のブロック |
ユーザー |
|
提出日時 | 2025-01-25 00:57:15 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 323 bytes |
コンパイル時間 | 1,645 ms |
コンパイル使用メモリ | 165,804 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2025-01-25 00:57:19 |
合計ジャッジ時間 | 3,189 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int L, N, sum = 0; cin >> L >> N; vector<int> M(N); for(int i = 0; i < N; i ++) cin >> M[i]; sort(M.begin(), M.end()); for(int i = 0; i < N; i ++) { sum += M[i]; if(sum > L) { cout << i << endl; return 0; } } cout << N << endl; return 0; }