結果

問題 No.1514 Squared Matching
ユーザー phsplsphspls
提出日時 2022-11-03 17:35:41
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1,183 ms / 4,000 ms
コード長 1,047 bytes
コンパイル時間 18,184 ms
コンパイル使用メモリ 386,308 KB
実行使用メモリ 392,868 KB
最終ジャッジ日時 2024-07-18 01:58:56
合計ジャッジ時間 38,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1,183 ms
392,848 KB
testcase_02 AC 1 ms
6,940 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 16 ms
8,224 KB
testcase_07 AC 198 ms
76,892 KB
testcase_08 AC 1,124 ms
378,584 KB
testcase_09 AC 962 ms
331,424 KB
testcase_10 AC 1,084 ms
358,832 KB
testcase_11 AC 1,117 ms
373,748 KB
testcase_12 AC 1,138 ms
384,020 KB
testcase_13 AC 1,162 ms
389,056 KB
testcase_14 AC 1,160 ms
391,184 KB
testcase_15 AC 1,165 ms
392,152 KB
testcase_16 AC 1,172 ms
392,588 KB
testcase_17 AC 1,167 ms
392,772 KB
testcase_18 AC 1,149 ms
392,828 KB
testcase_19 AC 1,150 ms
392,836 KB
testcase_20 AC 1,150 ms
392,796 KB
testcase_21 AC 1,152 ms
392,868 KB
testcase_22 AC 213 ms
80,296 KB
testcase_23 AC 413 ms
158,452 KB
testcase_24 AC 669 ms
236,596 KB
testcase_25 AC 946 ms
314,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn get_primes(n: usize) -> Vec<bool> {
    let mut flgs = vec![true; n+1];
    flgs[0] = false;
    flgs[1] = false;

    for i in 2..=(n as f64).sqrt().ceil() as usize {
        if !flgs[i] { continue; }
        for j in i..=n/i {
            flgs[i*j] = false;
        }
    }

    flgs
}

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

    let limit = (n as f64).sqrt().ceil() as usize;
    let primes = get_primes(limit);
    let mut factors = (0..=n).collect::<Vec<_>>();
    for i in 0..=limit {
        if !primes[i] { continue; }
        let modval = i*i;
        for j in 1.. {
            let target = j * modval;
            if target > n { break; }
            while factors[target] % modval == 0 {
                factors[target] /= modval;
            }
        }
    }
    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