結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 14 ms
6,940 KB
testcase_05 AC 59 ms
9,108 KB
testcase_06 AC 168 ms
19,736 KB
testcase_07 AC 127 ms
16,136 KB
testcase_08 AC 119 ms
15,144 KB
testcase_09 AC 103 ms
13,520 KB
testcase_10 AC 146 ms
18,180 KB
testcase_11 AC 188 ms
22,176 KB
testcase_12 AC 43 ms
7,180 KB
testcase_13 AC 216 ms
23,088 KB
testcase_14 AC 187 ms
21,624 KB
testcase_15 AC 41 ms
7,336 KB
testcase_16 AC 102 ms
13,392 KB
testcase_17 AC 126 ms
15,596 KB
testcase_18 AC 40 ms
7,132 KB
testcase_19 AC 210 ms
23,480 KB
testcase_20 AC 280 ms
22,160 KB
testcase_21 AC 120 ms
11,824 KB
testcase_22 AC 202 ms
22,764 KB
testcase_23 AC 33 ms
6,940 KB
testcase_24 AC 208 ms
18,392 KB
testcase_25 AC 227 ms
19,340 KB
testcase_26 AC 220 ms
21,792 KB
testcase_27 AC 206 ms
23,056 KB
testcase_28 AC 106 ms
13,120 KB
testcase_29 AC 159 ms
18,304 KB
testcase_30 AC 204 ms
22,808 KB
testcase_31 AC 88 ms
11,456 KB
testcase_32 AC 349 ms
22,344 KB
testcase_33 AC 133 ms
10,532 KB
testcase_34 AC 27 ms
6,940 KB
testcase_35 AC 205 ms
22,660 KB
testcase_36 AC 144 ms
22,372 KB
testcase_37 RE -
testcase_38 AC 132 ms
23,520 KB
testcase_39 AC 149 ms
28,936 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