結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2020-05-30 19:33:26 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 355 bytes |
コンパイル時間 | 1,630 ms |
コンパイル使用メモリ | 168,752 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 23:50:22 |
合計ジャッジ時間 | 2,722 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; ll x[500005]; int main(){ ll n, m; cin >> m >> n; for(int i=0;i<n;i++){ cin >> x[i]; } sort(x, x + n); ll cnt = 0; ll sum = 0; for(int i=0;i<n;i++){ sum += x[i]; if(sum <= m)cnt ++; } cout << cnt << endl; return 0; }