結果
問題 | No.5 数字のブロック |
ユーザー |
![]() |
提出日時 | 2015-05-18 09:49:35 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 351 bytes |
コンパイル時間 | 607 ms |
コンパイル使用メモリ | 60,660 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 22:43:18 |
合計ジャッジ時間 | 1,665 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include<iostream> #include<algorithm> using namespace std; int main(){ int a[10000]; int l; int n; int t = 0; cin >> l; cin >> n; for (int i = 0; i < n; i++){ cin >> a[i]; } sort(a, a + n); for (int i2 = 0; i2 < n; i2++){ t += a[i2]; if (t>l){ cout << i2 << endl; break; } else if(i2==n-1){ cout << n << endl; } } }