結果

問題 No.2718 Best Consonance
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-06-26 18:52:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 935 bytes
コンパイル時間 5,190 ms
コンパイル使用メモリ 317,784 KB
実行使用メモリ 285,252 KB
最終ジャッジ日時 2024-06-26 18:53:16
合計ジャッジ時間 24,872 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
29,296 KB
testcase_01 AC 137 ms
29,336 KB
testcase_02 AC 139 ms
29,292 KB
testcase_03 AC 132 ms
29,344 KB
testcase_04 AC 164 ms
29,284 KB
testcase_05 AC 123 ms
29,372 KB
testcase_06 AC 134 ms
29,332 KB
testcase_07 AC 137 ms
29,360 KB
testcase_08 AC 136 ms
29,256 KB
testcase_09 AC 141 ms
29,420 KB
testcase_10 AC 138 ms
29,404 KB
testcase_11 AC 120 ms
29,456 KB
testcase_12 AC 177 ms
29,556 KB
testcase_13 AC 151 ms
29,388 KB
testcase_14 AC 557 ms
55,280 KB
testcase_15 AC 480 ms
49,264 KB
testcase_16 AC 506 ms
50,860 KB
testcase_17 AC 409 ms
46,300 KB
testcase_18 AC 532 ms
52,480 KB
testcase_19 AC 448 ms
48,636 KB
testcase_20 AC 587 ms
55,204 KB
testcase_21 AC 537 ms
54,024 KB
testcase_22 AC 565 ms
54,304 KB
testcase_23 AC 414 ms
44,532 KB
testcase_24 AC 561 ms
57,948 KB
testcase_25 AC 635 ms
57,916 KB
testcase_26 AC 582 ms
58,052 KB
testcase_27 AC 613 ms
57,644 KB
testcase_28 AC 610 ms
57,660 KB
testcase_29 AC 642 ms
57,772 KB
testcase_30 AC 598 ms
57,824 KB
testcase_31 AC 624 ms
57,964 KB
testcase_32 AC 574 ms
57,636 KB
testcase_33 AC 607 ms
57,852 KB
testcase_34 AC 134 ms
29,224 KB
testcase_35 AC 114 ms
29,228 KB
testcase_36 RE -
testcase_37 AC 137 ms
29,336 KB
testcase_38 RE -
testcase_39 AC 150 ms
29,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n;cin>>n;
  vc<pp>v(n); for(auto&[a,b]:v)cin>>a>>b;
  int m=2e5+5;
  vc d(m,vc<int>(0));
  for(int i=1;i<m;i++)for(int j=i;j<m;j+=i)d[j].pb(i);
  vc dx(m,vc<pp>(0));
  for(auto p:v)for(auto au:d[p.fi])dx[au].pb(p);
  int ans=0;
  for(int i=1;i<m;i++)if(dx[i].size()){
    auto& vx=dx[i];
    sort(all(vx),[&](pp a,pp b){
      return (ll)a.fi*a.se>=(ll)b.fi*b.se;
    });
    int mn=1e9+5;
    for(auto [a,b]:vx){
      ans=max(ans,b/mn);
      mn=min(mn,a/i);
    }
  }
  cout<<ans;
}
      
    
      
0