結果
問題 | No.2756 GCD Teleporter |
ユーザー | cho435 |
提出日時 | 2024-05-11 17:16:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 833 bytes |
コンパイル時間 | 4,734 ms |
コンパイル使用メモリ | 277,116 KB |
実行使用メモリ | 10,488 KB |
最終ジャッジ日時 | 2024-05-11 17:16:30 |
合計ジャッジ時間 | 14,822 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 19 ms
6,940 KB |
testcase_05 | AC | 81 ms
6,944 KB |
testcase_06 | AC | 231 ms
9,064 KB |
testcase_07 | AC | 184 ms
8,064 KB |
testcase_08 | AC | 162 ms
7,680 KB |
testcase_09 | AC | 140 ms
7,296 KB |
testcase_10 | AC | 205 ms
8,644 KB |
testcase_11 | AC | 288 ms
9,800 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 538 ms
8,424 KB |
testcase_21 | AC | 240 ms
6,940 KB |
testcase_22 | AC | 357 ms
8,444 KB |
testcase_23 | AC | 62 ms
6,940 KB |
testcase_24 | AC | 415 ms
7,508 KB |
testcase_25 | AC | 475 ms
7,672 KB |
testcase_26 | AC | 408 ms
8,400 KB |
testcase_27 | AC | 337 ms
8,496 KB |
testcase_28 | AC | 157 ms
6,944 KB |
testcase_29 | AC | 251 ms
7,552 KB |
testcase_30 | AC | 308 ms
8,704 KB |
testcase_31 | AC | 132 ms
6,940 KB |
testcase_32 | AC | 914 ms
7,120 KB |
testcase_33 | AC | 337 ms
6,944 KB |
testcase_34 | AC | 52 ms
6,944 KB |
testcase_35 | AC | 380 ms
7,508 KB |
testcase_36 | AC | 237 ms
7,588 KB |
testcase_37 | WA | - |
testcase_38 | AC | 127 ms
8,168 KB |
testcase_39 | AC | 131 ms
10,488 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; #define rep(i,n) for(int i=0;i<(int)(n);i++) using mint = atcoder::modint998244353; template<class T> void chmin(T &a,T b){ if(a>b) a=b; } int main(){ int n; cin>>n; vector<int> a(n); rep(i,n) cin>>a.at(i); map<ll,vector<int>> mp; rep(i,n){ int tmp=a.at(i); for(ll j=2;j*j<=tmp;j++){ if(tmp%j==0){ mp[j].push_back(i); while(tmp%j==0) tmp/=j; } } if(tmp>1) mp[tmp].push_back(i); } atcoder::dsu uf(n); for(auto&[x,v]:mp){ for(auto&y:v){ uf.merge(v.at(0),y); } } vector<ll> sc(n,1e18); for(auto&[x,v]:mp){ for(auto&y:v){ chmin(sc.at(uf.leader(y)),x); } } ll mn=1e18; set<int> st; rep(i,n){ st.insert(uf.leader(i)); chmin(mn,sc.at(uf.leader(i))); } cout<<(ll)mn*(st.size()-1)<<endl; }