結果

問題 No.937 Ultra Sword
ユーザー face4face4
提出日時 2019-11-30 10:21:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 448 ms / 3,000 ms
コード長 1,026 bytes
コンパイル時間 648 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-21 03:21:52
合計ジャッジ時間 9,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,820 KB
testcase_01 AC 10 ms
6,816 KB
testcase_02 AC 10 ms
6,816 KB
testcase_03 AC 10 ms
6,816 KB
testcase_04 AC 10 ms
6,816 KB
testcase_05 AC 386 ms
6,816 KB
testcase_06 AC 327 ms
6,816 KB
testcase_07 AC 365 ms
6,816 KB
testcase_08 AC 162 ms
6,816 KB
testcase_09 AC 126 ms
6,816 KB
testcase_10 AC 410 ms
6,816 KB
testcase_11 AC 43 ms
6,816 KB
testcase_12 AC 190 ms
6,816 KB
testcase_13 AC 182 ms
6,820 KB
testcase_14 AC 214 ms
6,820 KB
testcase_15 AC 158 ms
6,820 KB
testcase_16 AC 12 ms
6,820 KB
testcase_17 AC 23 ms
6,816 KB
testcase_18 AC 173 ms
6,816 KB
testcase_19 AC 103 ms
6,816 KB
testcase_20 AC 91 ms
6,820 KB
testcase_21 AC 432 ms
6,816 KB
testcase_22 AC 10 ms
6,820 KB
testcase_23 AC 10 ms
6,816 KB
testcase_24 AC 448 ms
6,820 KB
testcase_25 AC 275 ms
6,816 KB
testcase_26 AC 244 ms
6,820 KB
testcase_27 AC 234 ms
6,820 KB
testcase_28 AC 282 ms
6,820 KB
testcase_29 AC 16 ms
6,816 KB
testcase_30 AC 208 ms
6,816 KB
testcase_31 AC 316 ms
6,820 KB
testcase_32 AC 180 ms
6,820 KB
testcase_33 AC 307 ms
6,820 KB
testcase_34 AC 58 ms
6,820 KB
testcase_35 AC 29 ms
6,820 KB
testcase_36 AC 268 ms
6,820 KB
testcase_37 AC 31 ms
6,816 KB
testcase_38 AC 207 ms
6,816 KB
testcase_39 AC 20 ms
6,820 KB
testcase_40 AC 247 ms
6,820 KB
testcase_41 AC 93 ms
6,820 KB
testcase_42 AC 194 ms
6,820 KB
testcase_43 AC 181 ms
6,816 KB
testcase_44 AC 71 ms
6,816 KB
testcase_45 AC 117 ms
6,820 KB
testcase_46 AC 131 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<numeric>
#include<cmath>
using namespace std;
typedef long long ll;

int gcd(int x, int y){
    if(x < y)   swap(x, y);
    if(y == 0)  return x;
    int cp = y;
    while((int)(log2(x)) > (int)(log2(y)))   y <<= 1;
    return gcd(cp, x^y);
}

int main(){
    int n;
    cin >> n;
    
    vector<int> v(n);
    for(int i = 0; i < n; i++)  cin >> v[i];

    ll ans = accumulate(v.begin(), v.end(), 0ll);

    vector<ll> d(100001, 0);
    for(int i = 0; i < n; i++){
        ll x = v[i];
        for(ll i = 1; i*i <= x; i++){
            if(x%i) continue;
            d[i] += x-x/i;
            if(i*i != x)    d[x/i] += x-i;
        }
    }

    int g = 0;
    for(int i = 0; i < n; i++)  g = gcd(g, v[i]);

    ll sub = 0;
    for(int i = 1; i < 1<<17; i++){
        ll make = 0;
        for(int j = 0; j < 17; j++){
            if((i>>j)&1)    make ^= (ll)g<<j;
        }
        if(make <= 100000) sub = max(sub, d[make]);
    }
    
    cout << ans-sub << endl;
    return 0;
}
0