#include using namespace std; using ll = long long; using vl = vector; using vvl = vector; #define REP(i,n) for(ll i = 0; i < (n); ++i) #define FOR(i,s,e) for (ll i = s; i < (ll)e; i++) #define ALL(c) (c).begin(), (c).end() int main() { cin.tie(0); ios_base::sync_with_stdio(false); ll d; cin >> d; REP(_, d) { ll n1, n2, m; cin >> n1 >> n2 >> m; vl a(m); REP(i, m) cin >> a[i]; sort(ALL(a)); vvl dp(m + 1, vl(n1 + 1, n2 + 1)); dp[0][0] = 0; // dp[i人までで][n1のうちk利用するときの] = n2の利用した最小の長さ FOR(i, 1, m + 1) REP(k, n1 + 1) { if(k - a[i - 1] >= 0) dp[i][k] = min(dp[i][k], dp[i - 1][k - a[i - 1]]); dp[i][k] = min(dp[i][k], dp[i - 1][k] + a[i - 1]); } ll ans = 0; REP(i, m + 1) REP(j, n1 + 1) if (dp[i][j] <= n2) ans = max(ans, i); cout << ans << endl; } return 0; }