結果
問題 | No.5 数字のブロック |
ユーザー | chacoder1 |
提出日時 | 2020-11-21 17:11:12 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 6 ms / 5,000 ms |
コード長 | 344 bytes |
コンパイル時間 | 2,046 ms |
コンパイル使用メモリ | 194,100 KB |
最終ジャッジ日時 | 2025-01-16 04:03:32 |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int l,n; cin>>l>>n; int t[n]; for(int i=0;i<n;i++){ cin>>t[i]; } sort(t,t+n); int temp=0; int cnt=0; while(1){ if(temp<=l){ temp+=t[cnt]; } else{ break; } if(cnt>n) break; cnt++; } cout<<cnt-1<<endl; return 0; }