結果

問題 No.1514 Squared Matching
ユーザー phsplsphspls
提出日時 2022-11-03 16:44:26
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 787 bytes
コンパイル時間 16,621 ms
コンパイル使用メモリ 392,256 KB
実行使用メモリ 448,656 KB
最終ジャッジ日時 2024-07-18 01:28:44
合計ジャッジ時間 22,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 TLE -
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 37 ms
8,892 KB
testcase_07 AC 722 ms
86,180 KB
testcase_08 TLE -
testcase_09 AC 3,588 ms
372,432 KB
testcase_10 AC 3,925 ms
403,180 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 761 ms
90,128 KB
testcase_23 AC 1,619 ms
178,012 KB
testcase_24 AC 2,499 ms
265,936 KB
testcase_25 AC 3,325 ms
353,768 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 {
        if !flgs[i] { continue; }
        let modval = i*i;
        for j in 1..=n/i {
            flgs[i*j] = false;
            while factors[i*j] % modval == 0 {
                factors[i*j] /= 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 = 0;
    for i in 1..=n {
        let limit = n / factors[i];
        result += (limit as f64).sqrt().floor() as usize;
    }
    println!("{}", result);
}
0