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