結果
問題 | No.2424 Josouzai |
ユーザー | noya2 |
提出日時 | 2023-08-11 20:11:21 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 96 ms / 2,000 ms |
コード長 | 374 bytes |
コンパイル時間 | 2,504 ms |
コンパイル使用メモリ | 205,424 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-26 21:09:45 |
合計ジャッジ時間 | 4,942 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; int main(){ int n; cin >> n; ll k; cin >> k; vector<ll> a(n); for (int i = 0; i < n; i++) cin >> a[i]; sort(a.begin(),a.end()); int ans = 0; for (int i = 0; i < n; i++){ if (a[i] > k) break; ans++; k -= a[i]; } cout << ans << " " << k << endl; }