結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2019-02-20 16:39:08 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 377 bytes |
コンパイル時間 | 874 ms |
コンパイル使用メモリ | 65,412 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 12:56:30 |
合計ジャッジ時間 | 1,550 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; int main(){ int a,b; cin>>a>>b; vector<int> c(b); for(int i=0;i<b;i++){ cin>>c[i]; } sort(c.begin(),c.end()); int d=0; for(int i=0;i<b;i++){ d+=c[i]; if(d>a){ cout<<i<<endl; return 0; } } cout<<b<<endl; }