#include #include #include #include #include #include #include #include #include #include #include #include #include #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; template vector> vec2d(int n, int m, T v){ return vector>(n, vector(m, v)); } template vector>> vec3d(int n, int m, int k, T v){ return vector>>(n, vector>(m, vector(k, v))); } template void print_vector(vector v, char delimiter=' '){ if(v.empty()) { cout << endl; return; } for(int i = 0; i+1 < v.size(); i++) cout << v[i] << delimiter; cout << v.back() << endl; } const int inf = 1e9; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int n; ll l, r; cin >> n >> l >> r; vector a(n); for(int i = 0; i < n; i++) cin >> a[i]; sort(a.begin(), a.end()); vector lb(n, inf), rb(n, -inf); for(int i = 0; i < n; i++){ for(int j = 0; j < n; j++){ if(i == j) continue; if(l <= a[i]*a[j] && a[i]*a[j] <= r){ chmin(lb[i], j); chmax(rb[i], j); } } } int ans = 1; for(int i = 0; i < n; i++){ for(int j = i+1; j < n; j++){ if(a[i]*a[j] < l && a[i]*a[j] > r) continue; chmax(ans, 2); int l = max({i+1, lb[i], lb[j]}); int r = min({j-1, rb[i], rb[j]}); if(r >= l){ chmax(ans, 2+r-l+1); } } } cout << ans << endl; }