結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-26 10:05:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,352 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 174,140 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-11-21 02:13:08
合計ジャッジ時間 6,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 114 ms
14,720 KB
testcase_06 AC 109 ms
14,720 KB
testcase_07 AC 121 ms
14,720 KB
testcase_08 AC 93 ms
14,592 KB
testcase_09 AC 76 ms
14,464 KB
testcase_10 AC 129 ms
14,720 KB
testcase_11 AC 11 ms
6,816 KB
testcase_12 AC 33 ms
6,816 KB
testcase_13 AC 33 ms
6,820 KB
testcase_14 AC 38 ms
6,820 KB
testcase_15 AC 29 ms
6,820 KB
testcase_16 AC 6 ms
6,816 KB
testcase_17 AC 8 ms
6,820 KB
testcase_18 AC 31 ms
6,816 KB
testcase_19 AC 20 ms
6,820 KB
testcase_20 AC 19 ms
6,816 KB
testcase_21 AC 123 ms
14,720 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 106 ms
14,592 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 107 ms
14,592 KB
testcase_31 AC 107 ms
14,720 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 79 ms
14,464 KB
testcase_35 AC 73 ms
14,336 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 73 ms
14,424 KB
testcase_45 WA -
testcase_46 AC 89 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include"bits/stdc++.h"
#define _overload3(_1,_2,_3,name,...) name
#define _rep(i,n) repi(i,0,n)
#define repi(i,a,b) for(int i=(a);i<(b);++i)
#define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__)
#define All(x) (x).begin(),(x).end()
#define rAll(x) (x).rbegin(),(x).rend()
using namespace std;
using ll = long long;


int gcd(int x,int y){return y?gcd(y,x%y):x;}

int GCD(int x,int y){
    if(x>y) swap(x,y);
    int Lx=32-__builtin_clz(x),Ly=32-__builtin_clz(y);
    return x?GCD(x,y^(x<<(Ly-Lx))):y;
}

bool Usable(int x,int g){
    int Lx=32-__builtin_clz(x),Lg=32-__builtin_clz(g);
    while(Lx>=Lg&&x!=0){
        x^=g<<(Lx-Lg);
        Lx=32-__builtin_clz(x);
    }
    return x==0;
}

int main(){
    int N;cin>>N;
    int M=0, G=0;
    ll S=0;
    vector<int> A(N);
    rep(i,N){
        cin>>A[i];
        M=max(M, A[i]);
        G=GCD(G, A[i]);
        S += A[i];
    }
    vector<ll> mi(M+1, 0);
    vector<vector<int>> div(M+1);
    for(int i=1;i<=M;++i){
        for(int j=i;j<=M;j+=i){
            div[j].push_back(i);
        }
    }
    rep(i,N){
        for(auto y:div[A[i]]){
            mi[y]+=A[i]-A[i]/y;
        }
    }
    ll X=S;
    rep(i,2,M+1){
    	int tmp=i;
    	if(tmp%G!=0) continue;
    	tmp/=G;
    	while(tmp%2==0){
    		tmp/=2;
    	}
        if(tmp==1) X = min(X, S-mi[i]);
    }
    cout<<X<<endl;
}
0