結果

問題 No.2756 GCD Teleporter
ユーザー 沙耶花沙耶花
提出日時 2024-05-10 22:07:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 965 bytes
コンパイル時間 4,552 ms
コンパイル使用メモリ 267,868 KB
実行使用メモリ 28,972 KB
最終ジャッジ日時 2024-12-20 05:48:53
合計ジャッジ時間 11,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 15 ms
6,816 KB
testcase_05 AC 63 ms
9,232 KB
testcase_06 AC 178 ms
19,884 KB
testcase_07 AC 142 ms
16,236 KB
testcase_08 AC 128 ms
15,372 KB
testcase_09 AC 112 ms
13,460 KB
testcase_10 AC 158 ms
18,068 KB
testcase_11 AC 201 ms
22,012 KB
testcase_12 AC 45 ms
7,176 KB
testcase_13 AC 218 ms
23,056 KB
testcase_14 AC 200 ms
21,580 KB
testcase_15 AC 46 ms
7,340 KB
testcase_16 AC 112 ms
13,512 KB
testcase_17 AC 138 ms
15,808 KB
testcase_18 AC 43 ms
7,140 KB
testcase_19 AC 224 ms
23,492 KB
testcase_20 AC 280 ms
22,072 KB
testcase_21 AC 128 ms
11,824 KB
testcase_22 AC 214 ms
22,580 KB
testcase_23 AC 34 ms
6,820 KB
testcase_24 AC 221 ms
18,340 KB
testcase_25 AC 232 ms
19,352 KB
testcase_26 AC 229 ms
21,760 KB
testcase_27 AC 214 ms
22,880 KB
testcase_28 AC 112 ms
13,120 KB
testcase_29 AC 170 ms
18,264 KB
testcase_30 AC 215 ms
22,812 KB
testcase_31 AC 93 ms
11,452 KB
testcase_32 AC 387 ms
22,512 KB
testcase_33 AC 140 ms
10,532 KB
testcase_34 AC 29 ms
6,820 KB
testcase_35 AC 199 ms
22,640 KB
testcase_36 AC 153 ms
22,412 KB
testcase_37 RE -
testcase_38 AC 132 ms
23,636 KB
testcase_39 AC 165 ms
28,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001


int main(){
   
  int n;
  cin>>n;
  vector<vector<int>> ps(n);
  vector<int> p;
  rep(i,n){
   int a;
   cin>>a;
   for(int j=2;j*j<=a;j++){
      if(a%j==0){
         ps[i].push_back(j);
         p.push_back(j);
         while(a%j==0){
            a/=j;
         }
      }
   }
   if(a>1){
      ps[i].push_back(a);
p.push_back(a);
   }

  }
  sort(p.begin(),p.end());
  p.erase(unique(p.begin(),p.end()),p.end());
  int m = p.size();
  dsu D(n+m);
   rep(i,n){
       for(int j:ps[i]){
         int k = lower_bound(p.begin(),p.end(),j)-p.begin();
         D.merge(i,n+k);
       }
   }
   long long G = D.groups().size();
   long long ans = (G-1) * p[0];
  ans = min(ans,G * 2);
  cout<<ans<<endl;
	return 0;
}
0