結果

問題 No.2500 Products in a Range
ユーザー menglei luanmenglei luan
提出日時 2023-10-13 21:46:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,139 bytes
コンパイル時間 1,846 ms
コンパイル使用メモリ 169,612 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 17:25:31
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 23 ms
5,376 KB
testcase_11 AC 28 ms
5,376 KB
testcase_12 AC 12 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 17 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 41 ms
5,376 KB
testcase_26 AC 42 ms
5,376 KB
testcase_27 AC 42 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 10 ms
5,376 KB
testcase_34 AC 25 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 2 ms
5,376 KB
testcase_43 WA -
testcase_44 AC 6 ms
5,376 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 41 ms
5,376 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 3 ms
5,376 KB
testcase_53 AC 3 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 3 ms
5,376 KB
testcase_57 AC 3 ms
5,376 KB
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void debug(const char *msg, ...) {
#ifdef CLESIP
    va_list arg;
    static char pbString[512];
    va_start(arg,msg);
    vsprintf(pbString,msg,arg);
    cerr << "[DEBUG] " << pbString << "\n";
    va_end(arg);
#endif    
}

using i64 = long long;
using i128 = __int128_t;
template <typename T, typename L> void chkmax(T &x, L y) { if (x < y) x = y; }
template <typename T, typename L> void chkmin(T &x, L y) { if (x > y) x = y; }

const int N = 5010;
int f[N], n;
i64 a[N], l, r;

void solve() {
	cin >> n >> l >> r;
	for (int i = 1; i <= n; i ++) 
		cin >> a[i];
	sort(a + 1, a + 1 + n);
	auto check = [&](i64 val) {
		return l <= val && val <= r;
	};
	int ans = 0;
	for (int i = 1; i < n; i ++) {
		if (!check(a[i] * a[i + 1]))
			continue;
		int j = i + 1;
		i64 mn = min(a[i], a[i + 1]), mx = max(a[i], a[i + 1]);
		while (j + 1 <= n && check(mn * a[j + 1]) && check(mx * a[j + 1])) {
			chkmax(mx, a[j + 1]);
			chkmin(mn, a[j + 1]);
			j ++;
		}
		chkmax(ans, j - i + 1);
	}
	cout << ans;
}	

int main() {
	ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
	solve();
	return 0;
}
0