結果
問題 | No.1514 Squared Matching |
ユーザー | phspls |
提出日時 | 2022-12-01 21:34:10 |
言語 | Rust (1.77.0 + proconio) |
結果 |
MLE
|
実行時間 | - |
コード長 | 877 bytes |
コンパイル時間 | 19,009 ms |
コンパイル使用メモリ | 398,240 KB |
実行使用メモリ | 588,208 KB |
最終ジャッジ日時 | 2024-10-09 02:19:57 |
合計ジャッジ時間 | 60,282 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 19 ms
11,216 KB |
testcase_07 | AC | 388 ms
114,192 KB |
testcase_08 | MLE | - |
testcase_09 | AC | 1,960 ms
495,928 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | AC | 401 ms
119,424 KB |
testcase_23 | AC | 861 ms
236,640 KB |
testcase_24 | AC | 1,319 ms
353,752 KB |
testcase_25 | AC | 1,807 ms
470,968 KB |
ソースコード
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; } let base = i * i; for j in i..=n/i { let idx = i*j; flgs[idx] = false; 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 cnts = vec![0u32; n+1]; for &v in factors.iter() { cnts[v] += 1; } let mut result = 0usize; for a in 1..=n { result += cnts[factors[a]] as usize; } println!("{}", result); }