結果

問題 No.1514 Squared Matching
ユーザー phsplsphspls
提出日時 2022-11-10 11:35:37
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 3,166 ms / 4,000 ms
コード長 833 bytes
コンパイル時間 13,217 ms
コンパイル使用メモリ 379,904 KB
実行使用メモリ 441,788 KB
最終ジャッジ日時 2024-07-23 14:20:45
合計ジャッジ時間 62,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 3,166 ms
441,788 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 26 ms
8,996 KB
testcase_07 AC 474 ms
86,156 KB
testcase_08 AC 2,764 ms
425,656 KB
testcase_09 AC 2,364 ms
372,364 KB
testcase_10 AC 2,515 ms
403,376 KB
testcase_11 AC 2,648 ms
420,140 KB
testcase_12 AC 2,730 ms
431,732 KB
testcase_13 AC 2,757 ms
437,304 KB
testcase_14 AC 2,810 ms
439,796 KB
testcase_15 AC 2,807 ms
440,828 KB
testcase_16 AC 2,802 ms
441,332 KB
testcase_17 AC 2,773 ms
441,612 KB
testcase_18 AC 2,831 ms
441,636 KB
testcase_19 AC 2,884 ms
441,756 KB
testcase_20 AC 2,830 ms
441,700 KB
testcase_21 AC 2,848 ms
441,688 KB
testcase_22 AC 481 ms
89,968 KB
testcase_23 AC 1,006 ms
178,032 KB
testcase_24 AC 1,563 ms
265,992 KB
testcase_25 AC 2,181 ms
353,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    ret
}

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 = n / factors[i];
        result += (right as f64).sqrt().floor() as usize;
    }
    println!("{}", result);
}
0