結果

問題 No.1514 Squared Matching
ユーザー phsplsphspls
提出日時 2022-11-17 23:31:43
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 2,980 ms / 4,000 ms
コード長 855 bytes
コンパイル時間 11,325 ms
コンパイル使用メモリ 379,656 KB
実行使用メモリ 441,728 KB
最終ジャッジ日時 2024-09-19 09:40:43
合計ジャッジ時間 61,181 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2,980 ms
441,728 KB
testcase_02 AC 30 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 27 ms
8,944 KB
testcase_07 AC 431 ms
86,132 KB
testcase_08 AC 2,822 ms
425,532 KB
testcase_09 AC 2,462 ms
372,480 KB
testcase_10 AC 2,644 ms
403,244 KB
testcase_11 AC 2,804 ms
419,968 KB
testcase_12 AC 2,866 ms
431,580 KB
testcase_13 AC 2,893 ms
437,408 KB
testcase_14 AC 2,899 ms
439,804 KB
testcase_15 AC 2,926 ms
440,832 KB
testcase_16 AC 2,888 ms
441,216 KB
testcase_17 AC 2,858 ms
441,472 KB
testcase_18 AC 2,869 ms
441,728 KB
testcase_19 AC 2,908 ms
441,724 KB
testcase_20 AC 2,864 ms
441,728 KB
testcase_21 AC 2,878 ms
441,660 KB
testcase_22 AC 450 ms
90,080 KB
testcase_23 AC 1,002 ms
177,916 KB
testcase_24 AC 1,663 ms
265,900 KB
testcase_25 AC 2,256 ms
353,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn get_factors(n: usize) -> Vec<usize> {
    let mut flgs = vec![true; n+1];
    flgs[0] = false;
    flgs[1] = false;
    let mut factors = (0..=n).collect::<Vec<_>>();

    for i in 2..=(n as f64).sqrt().ceil() as usize {
        if !flgs[i] { continue; }
        let modval = i * i;
        for j in 1..=n/i {
            let idx = i*j;
            flgs[idx] = false;
            while factors[idx] % modval == 0 {
                factors[idx] /= modval;
            }
        }
    }

    factors
}

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();

    let factors = get_factors(n);
    let mut result = 0usize;
    for i in 1..=n {
        let right = factors[i];
        result += ((n / right) as f64).sqrt().floor() as usize;
    }
    println!("{}", result);
}
0