結果

問題 No.2718 Best Consonance
ユーザー RubikunRubikun
提出日時 2024-07-11 01:40:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 986 ms / 4,000 ms
コード長 1,243 bytes
コンパイル時間 2,833 ms
コンパイル使用メモリ 210,556 KB
実行使用メモリ 29,312 KB
最終ジャッジ日時 2024-07-11 01:40:22
合計ジャッジ時間 18,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
26,368 KB
testcase_01 AC 147 ms
26,240 KB
testcase_02 AC 157 ms
26,436 KB
testcase_03 AC 147 ms
26,240 KB
testcase_04 AC 158 ms
26,240 KB
testcase_05 AC 172 ms
26,240 KB
testcase_06 AC 218 ms
26,240 KB
testcase_07 AC 149 ms
26,368 KB
testcase_08 AC 198 ms
26,240 KB
testcase_09 AC 160 ms
26,240 KB
testcase_10 AC 190 ms
26,312 KB
testcase_11 AC 169 ms
26,480 KB
testcase_12 AC 164 ms
26,404 KB
testcase_13 AC 206 ms
26,308 KB
testcase_14 AC 330 ms
29,160 KB
testcase_15 AC 280 ms
28,416 KB
testcase_16 AC 281 ms
28,640 KB
testcase_17 AC 284 ms
27,904 KB
testcase_18 AC 309 ms
28,672 KB
testcase_19 AC 290 ms
28,288 KB
testcase_20 AC 331 ms
29,184 KB
testcase_21 AC 340 ms
28,928 KB
testcase_22 AC 331 ms
28,928 KB
testcase_23 AC 263 ms
27,844 KB
testcase_24 AC 347 ms
29,184 KB
testcase_25 AC 376 ms
29,184 KB
testcase_26 AC 335 ms
29,184 KB
testcase_27 AC 355 ms
29,240 KB
testcase_28 AC 331 ms
29,252 KB
testcase_29 AC 334 ms
29,124 KB
testcase_30 AC 376 ms
29,184 KB
testcase_31 AC 334 ms
29,248 KB
testcase_32 AC 350 ms
29,184 KB
testcase_33 AC 333 ms
29,312 KB
testcase_34 AC 183 ms
26,312 KB
testcase_35 AC 186 ms
26,272 KB
testcase_36 AC 404 ms
29,220 KB
testcase_37 AC 169 ms
26,356 KB
testcase_38 AC 986 ms
29,312 KB
testcase_39 AC 185 ms
26,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define all(x) (x).begin(),(x).end()
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=200005,INF=15<<26;

vector<int> yaku[MAX];
ll mi[MAX];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    for(ll x=1;x<=200000;x++){
        for(ll y=x;y<=200000;y+=x){
            yaku[y].push_back(x);
        }
        mi[x]=INF;
    }
    ll N;cin>>N;
    vector<pair<ll,ll>> S(N);
    for(int i=0;i<N;i++) cin>>S[i].fi>>S[i].se;
    sort(all(S),[&](auto a,auto b){
        return a.fi*a.se<b.fi*b.se;
    });
    
    ll ans=0;
    
    for(int i=N-1;i>=0;i--){
        auto [a,b]=S[i];
        for(ll g:yaku[a]){
            if(mi[g]==INF) continue;
            
            ll L=a*mi[g]/g;
            chmax(ans,a*b/L);
        }
        
        for(ll g:yaku[a]){
            chmin(mi[g],a);
        }
    }
    
    cout<<ans<<endl;
}

0