結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-27 08:42:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,076 bytes
コンパイル時間 1,512 ms
コンパイル使用メモリ 170,452 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-21 02:13:58
合計ジャッジ時間 48,844 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,276 KB
testcase_01 AC 4 ms
10,272 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
10,532 KB
testcase_04 AC 2 ms
13,632 KB
testcase_05 AC 33 ms
10,144 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 494 ms
6,820 KB
testcase_12 AC 2,652 ms
6,816 KB
testcase_13 AC 2,564 ms
6,820 KB
testcase_14 AC 2,976 ms
6,816 KB
testcase_15 AC 2,189 ms
6,820 KB
testcase_16 AC 27 ms
6,816 KB
testcase_17 AC 199 ms
6,816 KB
testcase_18 AC 2,414 ms
6,816 KB
testcase_19 AC 1,382 ms
6,816 KB
testcase_20 AC 1,198 ms
6,816 KB
testcase_21 TLE -
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 TLE -
testcase_25 AC 85 ms
6,820 KB
testcase_26 AC 193 ms
6,820 KB
testcase_27 AC 110 ms
6,816 KB
testcase_28 AC 405 ms
6,816 KB
testcase_29 AC 5 ms
6,820 KB
testcase_30 AC 290 ms
6,816 KB
testcase_31 AC 148 ms
6,816 KB
testcase_32 AC 55 ms
6,820 KB
testcase_33 AC 93 ms
6,820 KB
testcase_34 AC 75 ms
6,820 KB
testcase_35 AC 9 ms
6,820 KB
testcase_36 AC 129 ms
6,816 KB
testcase_37 AC 14 ms
6,820 KB
testcase_38 AC 101 ms
6,820 KB
testcase_39 AC 6 ms
6,820 KB
testcase_40 AC 74 ms
6,816 KB
testcase_41 AC 29 ms
6,820 KB
testcase_42 AC 58 ms
6,820 KB
testcase_43 AC 83 ms
6,820 KB
testcase_44 AC 171 ms
6,816 KB
testcase_45 AC 54 ms
6,816 KB
testcase_46 AC 344 ms
10,400 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;
    vector<int> A(N);
    ll S=0;
    rep(i,N){
        cin>>A[i];
        M=max(M, A[i]);
        G=GCD(G, A[i]);
        S+=A[i];
    }
    
    ll X=S;
    rep(i,2,M+1) if(Usable(i,G)){
    	ll T=0;
    	rep(j,N){
    		if(A[j]%i==0) T+=A[j]/i;
    		else T+=A[j];
    	}
    	X = min(X, T);
    }
    cout<<X<<endl;
}
0