0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-24 01:48:56 +00:00

A - Divan and a Store

https://codeforces.com/contest/1614/submission/136995472
This commit is contained in:
Baoshuo Ren 2021-11-26 19:23:25 +08:00 committed by Baoshuo Ren
parent dfe3d78e9b
commit 5889f1bb0f
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

28
CodeForces/1614/A/A.cpp Normal file
View File

@ -0,0 +1,28 @@
#include <bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
int t, n, l, r, k, a[105];
int main() {
cin >> t;
while (t--) {
int ans = 0;
cin >> n >> l >> r >> k;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
std::sort(a, a + n);
for (int i = 0; i < n; i++) {
if (k < a[i]) break;
if (l <= a[i] && a[i] <= r) {
k -= a[i];
ans++;
}
}
cout << ans << endl;
}
return 0;
}