結果

問題 No.1514 Squared Matching
ユーザー phsplsphspls
提出日時 2022-11-03 16:50:02
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 2,741 ms / 4,000 ms
コード長 819 bytes
コンパイル時間 10,702 ms
コンパイル使用メモリ 401,568 KB
実行使用メモリ 441,728 KB
最終ジャッジ日時 2024-07-18 01:33:38
合計ジャッジ時間 56,198 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2,663 ms
441,600 KB
testcase_02 AC 1 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 24 ms
8,832 KB
testcase_07 AC 419 ms
86,144 KB
testcase_08 AC 2,536 ms
425,684 KB
testcase_09 AC 2,195 ms
372,352 KB
testcase_10 AC 2,444 ms
403,328 KB
testcase_11 AC 2,548 ms
420,096 KB
testcase_12 AC 2,599 ms
431,560 KB
testcase_13 AC 2,667 ms
437,528 KB
testcase_14 AC 2,686 ms
439,808 KB
testcase_15 AC 2,741 ms
440,960 KB
testcase_16 AC 2,695 ms
441,344 KB
testcase_17 AC 2,703 ms
441,600 KB
testcase_18 AC 2,695 ms
441,728 KB
testcase_19 AC 2,721 ms
441,620 KB
testcase_20 AC 2,675 ms
441,688 KB
testcase_21 AC 2,671 ms
441,728 KB
testcase_22 AC 446 ms
89,984 KB
testcase_23 AC 963 ms
178,028 KB
testcase_24 AC 1,505 ms
265,912 KB
testcase_25 AC 2,082 ms
353,664 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 {
            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