結果
| 問題 |
No.144 エラトステネスのざる
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-23 19:21:16 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,075 bytes |
| コンパイル時間 | 14,776 ms |
| コンパイル使用メモリ | 402,032 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-29 23:57:07 |
| 合計ジャッジ時間 | 36,153 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 TLE * 7 |
ソースコード
#[macro_export]
macro_rules! setup {
{ mut $input:ident: SplitWhitespace $(,)? } => {
use std::io::Read;
let mut buf = String::new();
std::io::stdin().read_to_string(&mut buf).ok();
let mut $input = buf.split_whitespace();
};
}
#[macro_export]
macro_rules! parse_next {
($str_iter:expr) => {
$str_iter.next().unwrap().parse().ok().unwrap()
};
}
fn main() {
setup! { mut input: SplitWhitespace };
let n: u64 = parse_next!(input);
let p: f64 = parse_next!(input);
let ans = (|| {
let mut expv = 0.0;
for i in 2..=n {
expv += (1.0 - p).powf(count_d(i) as f64);
}
expv
})();
println!("{}", ans);
}
fn count_d(n: u64) -> u64 {
let mut count = 0;
let ub = (n as f64).sqrt().floor() as u64;
for i in 2..=ub {
// if i * i > n {
// break;
// }
if n % i == 0 {
match i * i == n {
true => count += 1,
false => count += 2,
}
}
}
count
}