結果

問題 No.2880 Max Sigma Mod
ユーザー とんぼとんぼ
提出日時 2024-09-08 14:57:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 145 ms / 3,000 ms
コード長 955 bytes
コンパイル時間 1,788 ms
コンパイル使用メモリ 175,224 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-08 14:57:44
合計ジャッジ時間 5,250 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 6 ms
6,940 KB
testcase_02 AC 6 ms
6,944 KB
testcase_03 AC 6 ms
6,940 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 115 ms
6,940 KB
testcase_06 AC 94 ms
6,940 KB
testcase_07 AC 65 ms
6,944 KB
testcase_08 AC 53 ms
6,940 KB
testcase_09 AC 33 ms
6,940 KB
testcase_10 AC 51 ms
6,944 KB
testcase_11 AC 72 ms
6,940 KB
testcase_12 AC 31 ms
6,940 KB
testcase_13 AC 16 ms
6,940 KB
testcase_14 AC 66 ms
6,944 KB
testcase_15 AC 141 ms
6,944 KB
testcase_16 AC 141 ms
6,940 KB
testcase_17 AC 143 ms
6,944 KB
testcase_18 AC 145 ms
6,940 KB
testcase_19 AC 141 ms
6,940 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 38 ms
6,940 KB
testcase_22 AC 72 ms
6,940 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 45 ms
6,940 KB
testcase_25 AC 117 ms
6,940 KB
testcase_26 AC 119 ms
6,944 KB
testcase_27 AC 118 ms
6,940 KB
testcase_28 AC 133 ms
6,940 KB
testcase_29 AC 55 ms
6,940 KB
testcase_30 AC 7 ms
6,944 KB
testcase_31 AC 6 ms
6,944 KB
testcase_32 AC 6 ms
6,940 KB
testcase_33 AC 6 ms
6,940 KB
testcase_34 AC 7 ms
6,940 KB
testcase_35 AC 7 ms
6,940 KB
testcase_36 AC 7 ms
6,940 KB
testcase_37 AC 7 ms
6,944 KB
testcase_38 AC 7 ms
6,940 KB
testcase_39 AC 7 ms
6,940 KB
testcase_40 AC 7 ms
6,944 KB
testcase_41 AC 7 ms
6,948 KB
testcase_42 AC 7 ms
6,940 KB
testcase_43 AC 6 ms
6,940 KB
testcase_44 AC 6 ms
6,940 KB
testcase_45 AC 7 ms
6,944 KB
testcase_46 AC 7 ms
6,940 KB
testcase_47 AC 6 ms
6,940 KB
testcase_48 AC 7 ms
6,944 KB
testcase_49 AC 7 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,N) for(i=0;i<N;i++)
#define ll long long

int main(void){
    ll i,j,k;
    ll N,M;

    cin>>N>>M;

    vector<bool> is_prime(200009,1);
    set<ll>prime;
    for(ll i=2;i<200009;i++){
        if(is_prime[i]==0)continue;
        prime.insert(i);
        for(ll j=i+i;j<200009;j+=i)is_prime[j]=0;
    }

    ll now=0;
    ll ans=0;
    for(ll i=1;i<=N;i++){
        now+=M;
        ll erase=1;
        ll k=i;
        for(auto it=prime.begin();it!=prime.end();it++){
            if(k==1)break;
            if(prime.find(k)!=prime.end()){
                erase*=k+1;
                break;
            }
            ll mul=1;
            ll power=1;
            while(k%*it==0){
                k/=*it;
                power*=*it;
                mul+=power;
            }
            erase*=mul;
        }
        now-=erase;
        ans=max(ans,now);
    }

    cout<<ans<<endl;

    return 0;
}
0