結果

問題 No.2718 Best Consonance
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-06-26 18:33:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 919 bytes
コンパイル時間 5,496 ms
コンパイル使用メモリ 316,300 KB
実行使用メモリ 284,356 KB
最終ジャッジ日時 2024-06-26 18:34:07
合計ジャッジ時間 27,552 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
29,360 KB
testcase_01 AC 157 ms
29,228 KB
testcase_02 AC 159 ms
29,344 KB
testcase_03 AC 171 ms
29,328 KB
testcase_04 AC 147 ms
29,456 KB
testcase_05 AC 145 ms
29,344 KB
testcase_06 AC 157 ms
29,440 KB
testcase_07 AC 187 ms
29,360 KB
testcase_08 AC 147 ms
29,436 KB
testcase_09 AC 181 ms
29,352 KB
testcase_10 AC 152 ms
29,344 KB
testcase_11 AC 169 ms
29,568 KB
testcase_12 AC 157 ms
29,692 KB
testcase_13 AC 173 ms
29,400 KB
testcase_14 AC 641 ms
55,284 KB
testcase_15 AC 510 ms
49,268 KB
testcase_16 AC 557 ms
50,992 KB
testcase_17 AC 457 ms
46,300 KB
testcase_18 AC 611 ms
52,352 KB
testcase_19 AC 498 ms
48,764 KB
testcase_20 AC 667 ms
55,208 KB
testcase_21 AC 620 ms
54,280 KB
testcase_22 AC 624 ms
54,400 KB
testcase_23 AC 439 ms
44,652 KB
testcase_24 AC 682 ms
57,820 KB
testcase_25 AC 635 ms
57,784 KB
testcase_26 AC 660 ms
58,048 KB
testcase_27 AC 659 ms
57,644 KB
testcase_28 AC 640 ms
57,792 KB
testcase_29 AC 666 ms
57,692 KB
testcase_30 AC 630 ms
58,028 KB
testcase_31 AC 615 ms
58,088 KB
testcase_32 AC 651 ms
57,632 KB
testcase_33 AC 633 ms
57,728 KB
testcase_34 AC 133 ms
29,272 KB
testcase_35 AC 139 ms
29,232 KB
testcase_36 RE -
testcase_37 AC 147 ms
29,312 KB
testcase_38 RE -
testcase_39 AC 141 ms
29,436 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