結果

問題 No.2891 Mint
ユーザー koba-e964koba-e964
提出日時 2024-10-22 15:31:04
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,496 bytes
コンパイル時間 12,049 ms
コンパイル使用メモリ 401,664 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-22 15:31:20
合計ジャッジ時間 15,101 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 24 ms
6,820 KB
testcase_05 WA -
testcase_06 AC 48 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
6,816 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 19 ms
6,816 KB
testcase_22 AC 39 ms
6,816 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 41 ms
6,820 KB
testcase_27 AC 39 ms
6,816 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 34 ms
6,820 KB
testcase_31 AC 20 ms
6,816 KB
testcase_32 AC 36 ms
6,816 KB
testcase_33 WA -
testcase_34 AC 28 ms
6,816 KB
testcase_35 WA -
testcase_36 AC 35 ms
6,820 KB
testcase_37 AC 18 ms
6,816 KB
testcase_38 AC 16 ms
6,816 KB
testcase_39 AC 21 ms
6,816 KB
testcase_40 AC 22 ms
6,816 KB
testcase_41 AC 12 ms
6,820 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 20 ms
6,820 KB
testcase_48 AC 19 ms
6,820 KB
testcase_49 AC 23 ms
6,816 KB
testcase_50 AC 7 ms
6,820 KB
testcase_51 AC 16 ms
6,820 KB
testcase_52 AC 6 ms
6,820 KB
testcase_53 AC 13 ms
6,816 KB
testcase_54 AC 15 ms
6,820 KB
testcase_55 AC 4 ms
6,816 KB
testcase_56 AC 23 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::Read;

fn get_word() -> String {
    let stdin = std::io::stdin();
    let mut stdin=stdin.lock();
    let mut u8b: [u8; 1] = [0];
    loop {
        let mut buf: Vec<u8> = Vec::with_capacity(16);
        loop {
            let res = stdin.read(&mut u8b);
            if res.unwrap_or(0) == 0 || u8b[0] <= b' ' {
                break;
            } else {
                buf.push(u8b[0]);
            }
        }
        if buf.len() >= 1 {
            let ret = String::from_utf8(buf).unwrap();
            return ret;
        }
    }
}

fn get<T: std::str::FromStr>() -> T { get_word().parse().ok().unwrap() }

const MOD: i64 = 998_244_353;

fn triangle(x: i64) -> i64 {
    let x = x % MOD;
    x * (x - 1) / 2 % MOD
}

fn main() {
    let n: i64 = get();
    let m: i64 = get();
    let mut x = 1;
    while x * x <= m {
        x += 1;
    }
    x -= 1;
    let mut tot = (m % MOD) * (n % MOD) % MOD;
    for i in 1..x + 1 {
        if i <= n {
            let q = m / i;
            tot += MOD - (q * i) % MOD;
        }
    }
    for j in 1..x + 1 {
        let l = x.max(m / (j + 1));
        let r = (m / j).min(n);
        if l < r {
            tot += MOD - ((r - l) % MOD) * j % MOD * ((l + 1) % MOD) % MOD;
            tot += MOD - triangle(r - l) * j % MOD;
        }
    }
    if m < n {
        tot += (n - m) % MOD * (m % MOD) % MOD
    }
    println!("{}", tot % MOD);
}
0