結果

問題 No.2718 Best Consonance
ユーザー shobonvipshobonvip
提出日時 2024-04-06 09:55:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,086 ms / 4,000 ms
コード長 1,713 bytes
コンパイル時間 4,669 ms
コンパイル使用メモリ 271,720 KB
実行使用メモリ 34,548 KB
最終ジャッジ日時 2024-10-02 12:59:18
合計ジャッジ時間 20,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
26,132 KB
testcase_01 AC 199 ms
26,316 KB
testcase_02 AC 224 ms
26,252 KB
testcase_03 AC 228 ms
26,280 KB
testcase_04 AC 228 ms
26,096 KB
testcase_05 AC 219 ms
26,224 KB
testcase_06 AC 224 ms
26,288 KB
testcase_07 AC 215 ms
26,208 KB
testcase_08 AC 212 ms
26,180 KB
testcase_09 AC 217 ms
26,268 KB
testcase_10 AC 220 ms
26,268 KB
testcase_11 AC 220 ms
26,204 KB
testcase_12 AC 216 ms
26,304 KB
testcase_13 AC 216 ms
26,196 KB
testcase_14 AC 462 ms
34,416 KB
testcase_15 AC 395 ms
32,736 KB
testcase_16 AC 425 ms
33,432 KB
testcase_17 AC 372 ms
30,916 KB
testcase_18 AC 423 ms
33,968 KB
testcase_19 AC 397 ms
32,232 KB
testcase_20 AC 452 ms
34,488 KB
testcase_21 AC 449 ms
33,904 KB
testcase_22 AC 459 ms
34,452 KB
testcase_23 AC 360 ms
30,416 KB
testcase_24 AC 481 ms
34,172 KB
testcase_25 AC 469 ms
34,068 KB
testcase_26 AC 464 ms
34,188 KB
testcase_27 AC 478 ms
34,004 KB
testcase_28 AC 482 ms
34,008 KB
testcase_29 AC 490 ms
33,952 KB
testcase_30 AC 477 ms
33,904 KB
testcase_31 AC 467 ms
34,084 KB
testcase_32 AC 474 ms
34,400 KB
testcase_33 AC 488 ms
33,960 KB
testcase_34 AC 190 ms
26,216 KB
testcase_35 AC 193 ms
26,180 KB
testcase_36 AC 553 ms
34,548 KB
testcase_37 AC 205 ms
26,248 KB
testcase_38 AC 1,086 ms
33,996 KB
testcase_39 AC 207 ms
26,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	int n; cin >> n;
	vector<tuple<ll,ll,ll>> tar;
	rep(i,0,n){
		ll a, b; cin >> a >> b;
		tar.push_back(make_tuple(a * b, a, b));
	}
	
	sort(tar.begin(), tar.end());
	reverse(tar.begin(), tar.end());

	vector<ll> a(n), b(n);
	rep(i,0,n){
		a[i] = get<1>(tar[i]);
		b[i] = get<2>(tar[i]);
	}

	const int mx = 200000;
	vector<ll> see(mx + 1, 1e18);

	vector<vector<int>> d(mx + 1);
	rep(i,1,mx+1){
		for (int j=i; j<=mx; j+=i){
			d[j].push_back(i);
		}
	}

	ll ans = 0;
	rep(i,0,n){
		for (int j: d[a[i]]){
			// A[x] / j = GCD
			if (see[j] < 1e12){
				chmax(ans, (a[i] * b[i]) / (see[j] * a[i]));
			}
			chmin(see[j], a[i] / j);
		}
	}
	cout << ans << '\n';
}

0