結果

問題 No.2880 Max Sigma Mod
ユーザー titiatitia
提出日時 2024-09-23 01:33:52
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 2,713 ms / 3,000 ms
コード長 768 bytes
コンパイル時間 12,399 ms
コンパイル使用メモリ 386,032 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-23 01:34:42
合計ジャッジ時間 48,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2,156 ms
6,944 KB
testcase_06 AC 1,609 ms
6,940 KB
testcase_07 AC 985 ms
6,944 KB
testcase_08 AC 751 ms
6,940 KB
testcase_09 AC 350 ms
6,940 KB
testcase_10 AC 649 ms
6,944 KB
testcase_11 AC 1,186 ms
6,944 KB
testcase_12 AC 309 ms
6,944 KB
testcase_13 AC 81 ms
6,940 KB
testcase_14 AC 1,045 ms
6,944 KB
testcase_15 AC 2,697 ms
6,944 KB
testcase_16 AC 2,697 ms
6,940 KB
testcase_17 AC 2,700 ms
6,940 KB
testcase_18 AC 2,705 ms
6,940 KB
testcase_19 AC 2,713 ms
6,944 KB
testcase_20 AC 15 ms
6,940 KB
testcase_21 AC 471 ms
6,940 KB
testcase_22 AC 1,161 ms
6,944 KB
testcase_23 AC 14 ms
6,944 KB
testcase_24 AC 584 ms
6,940 KB
testcase_25 AC 2,092 ms
6,940 KB
testcase_26 AC 2,220 ms
6,940 KB
testcase_27 AC 2,160 ms
6,940 KB
testcase_28 AC 2,522 ms
6,944 KB
testcase_29 AC 826 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 1 ms
6,944 KB
testcase_40 AC 1 ms
6,944 KB
testcase_41 AC 1 ms
6,944 KB
testcase_42 AC 1 ms
6,940 KB
testcase_43 AC 1 ms
6,944 KB
testcase_44 AC 1 ms
6,940 KB
testcase_45 AC 1 ms
6,940 KB
testcase_46 AC 0 ms
6,940 KB
testcase_47 AC 1 ms
6,940 KB
testcase_48 AC 1 ms
6,940 KB
testcase_49 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::cmp;

fn calc(x: i64, m: i64) -> i64 {
    let mut ans = x * m;

    let mut ind = 1;
    while ind <= m {
        let k = x / ind;
        if k == 0 {
            break;
        }
        let max_ind = x / k;

        let max_ind = cmp::min(max_ind, m);

        ans -= (ind + max_ind) * (max_ind - ind + 1) * k / 2;
        ind = max_ind + 1;
    }

    ans
}

fn main() {
    let mut input = String::new();
    std::io::stdin().read_line(&mut input).unwrap();
    let parts: Vec<i64> = input
        .trim()
        .split_whitespace()
        .map(|s| s.parse().unwrap())
        .collect();
    let n = parts[0];
    let m = parts[1];

    let mut ans = 0;

    for i in 0..=n {
        ans = cmp::max(ans, calc(i, m));
    }

    println!("{}", ans);
}
0