結果

問題 No.2500 Products in a Range
ユーザー Алексей ДанилюкАлексей Данилюк
提出日時 2023-10-13 21:11:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,178 bytes
コンパイル時間 1,446 ms
コンパイル使用メモリ 130,996 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-15 16:42:33
合計ジャッジ時間 3,839 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 9 ms
5,376 KB
testcase_08 AC 33 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 28 ms
5,376 KB
testcase_11 AC 36 ms
5,376 KB
testcase_12 AC 14 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 39 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 27 ms
5,376 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 15 ms
5,376 KB
testcase_19 AC 16 ms
5,376 KB
testcase_20 AC 17 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 40 ms
5,376 KB
testcase_23 AC 42 ms
5,376 KB
testcase_24 AC 41 ms
5,376 KB
testcase_25 AC 53 ms
5,376 KB
testcase_26 AC 52 ms
5,376 KB
testcase_27 AC 52 ms
5,376 KB
testcase_28 AC 15 ms
5,376 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 WA -
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 13 ms
5,376 KB
testcase_34 AC 31 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 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 7 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 10 ms
5,376 KB
testcase_47 AC 52 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 WA -
testcase_50 AC 15 ms
5,376 KB
testcase_51 AC 17 ms
5,376 KB
testcase_52 AC 33 ms
5,376 KB
testcase_53 AC 5 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 17 ms
5,376 KB
testcase_56 AC 19 ms
5,376 KB
testcase_57 AC 38 ms
5,376 KB
testcase_58 AC 6 ms
5,376 KB
testcase_59 AC 36 ms
5,376 KB
testcase_60 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#pragma GCC optimize("Ofast")
//#pragma GCC target("avx,avx2,fma")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4.1,sse4.2,sse4a,avx,avx2,popcnt,tune=native")
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cmath>
#include <vector>
#include <set>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <queue>
#include <ctime>
#include <cassert>
#include <complex>
#include <string>
#include <cstring>
#include <chrono>
#include <random>
#include <bitset>
#include <array>
#include <climits>
using namespace std;

#ifdef LOCAL
	#define eprintf(...) {fprintf(stderr, __VA_ARGS__);fflush(stderr);}
#else
	#define eprintf(...) 42
#endif

using ll = long long;
using ld = long double;
using uint = unsigned int;
using ull = unsigned long long;
using pii = pair<int, int>;
using pli = pair<ll, int>;
using pll = pair<ll, ll>;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
	return (ull)rng() % B;
}

#define mp make_pair
#define all(x) (x).begin(),(x).end()

clock_t startTime;
double getCurrentTime() {
	return (double)(clock() - startTime) / CLOCKS_PER_SEC;
}

ll floor_div(ll x, ll y) {
	assert(y != 0);
	if (y < 0) {
		y = -y;
		x = -x;
	}
	if (x >= 0) return x / y;
	return (x + 1) / y - 1;
}
ll ceil_div(ll x, ll y) {
	assert(y != 0);
	if (y < 0) {
		y = -y;
		x = -x;
	}
	if (x <= 0) return x / y;
	return (x - 1) / y + 1;
}

const int N = 5050;
int n;
ll a[N];
ll l, r;
int ans;

int main() {
	startTime = clock();
//	freopen("input.txt", "r", stdin);
//	freopen("output.txt", "w", stdout);

	scanf("%d%lld%lld", &n, &l, &r);
	for (int i = 0; i < n; i++)
		scanf("%lld", &a[i]);
	sort(a, a + n);
	ans = 1;
	if (r < 0) {
		for (int i = 0; i < n; i++)
			for (int j = i + 1; j < n; j++) {
				ll x = a[i] * a[j];
				if (l <= x && x <= r)
					ans = 2;
			}
		printf("%d\n", ans);
		return 0;
	}
	for (int i = 0; i < n; i++)
		for (int j = i + 1; j < n; j++) {
			ll x = a[i] * a[i + 1];
			ll y = a[i] * a[j];
			ll z = a[j - 1] * a[j];
			if (min(x, min(y, z)) < l || max(x, max(y, z)) > r) continue;
			ans = max(ans, j - i + 1);
		}
	printf("%d\n", ans);

	return 0;
}
0