結果

問題 No.2880 Max Sigma Mod
ユーザー GOTKAKOGOTKAKO
提出日時 2024-09-08 12:46:27
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2,485 ms / 3,000 ms
コード長 560 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 202,228 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-08 12:47:03
合計ジャッジ時間 35,963 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N,M; cin >> N >> M;
    long long answer = 0;
    for(int i=1; i<=N; i++){
        long long now = 1LL*i*M;
        long long k;
        for(k=1; k*k<=N&&k<=M; k++) now -= i/k*k;
        while(i/k && k<=M){
            long long dec = i/k;
            long long maxk = i/dec;
            now -= dec*(maxk*(maxk+1)/2-(k-1)*k/2);
            k = maxk+1;
        }
        answer = max(answer,now);
    }
    cout << answer << endl;
}
0