結果

問題 No.2718 Best Consonance
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-06-26 20:03:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,996 ms / 4,000 ms
コード長 918 bytes
コンパイル時間 5,365 ms
コンパイル使用メモリ 317,372 KB
実行使用メモリ 284,480 KB
最終ジャッジ日時 2024-06-26 20:04:07
合計ジャッジ時間 26,363 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
29,312 KB
testcase_01 AC 166 ms
29,440 KB
testcase_02 AC 170 ms
29,424 KB
testcase_03 AC 182 ms
29,312 KB
testcase_04 AC 168 ms
29,452 KB
testcase_05 AC 177 ms
29,440 KB
testcase_06 AC 167 ms
29,312 KB
testcase_07 AC 166 ms
29,264 KB
testcase_08 AC 194 ms
29,440 KB
testcase_09 AC 196 ms
29,440 KB
testcase_10 AC 206 ms
29,460 KB
testcase_11 AC 176 ms
29,460 KB
testcase_12 AC 168 ms
29,472 KB
testcase_13 AC 188 ms
29,560 KB
testcase_14 AC 629 ms
55,280 KB
testcase_15 AC 518 ms
49,272 KB
testcase_16 AC 557 ms
50,860 KB
testcase_17 AC 498 ms
46,432 KB
testcase_18 AC 588 ms
52,356 KB
testcase_19 AC 508 ms
48,636 KB
testcase_20 AC 661 ms
55,340 KB
testcase_21 AC 615 ms
54,152 KB
testcase_22 AC 607 ms
54,424 KB
testcase_23 AC 435 ms
44,780 KB
testcase_24 AC 704 ms
57,952 KB
testcase_25 AC 670 ms
57,916 KB
testcase_26 AC 664 ms
58,052 KB
testcase_27 AC 682 ms
57,648 KB
testcase_28 AC 690 ms
57,792 KB
testcase_29 AC 705 ms
57,900 KB
testcase_30 AC 658 ms
57,900 KB
testcase_31 AC 666 ms
58,088 KB
testcase_32 AC 692 ms
57,760 KB
testcase_33 AC 661 ms
57,768 KB
testcase_34 AC 176 ms
29,312 KB
testcase_35 AC 183 ms
29,424 KB
testcase_36 AC 748 ms
96,760 KB
testcase_37 AC 177 ms
29,440 KB
testcase_38 AC 1,996 ms
284,480 KB
testcase_39 AC 175 ms
29,380 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++){
    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