結果
| 問題 | 
                            No.144 エラトステネスのざる
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-01-23 19:36:00 | 
| 言語 | Rust  (1.83.0 + proconio)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 1,035 bytes | 
| コンパイル時間 | 16,120 ms | 
| コンパイル使用メモリ | 377,768 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-30 00:23:51 | 
| 合計ジャッジ時間 | 34,340 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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 comp_p = 1.0 - p;
    let ans = (|| {
        let mut expv = 0.0;
        for i in 2..=n {
            expv += comp_p.powi(count_d(i));
        }
        expv
    })();
    println!("{}", ans);
}
fn count_d(n: u64) -> i32 {
    let mut count = 0;
    for i in 2..=n {
        if i * i > n {
            break;
        }
        if n % i == 0 {
            match i * i == n {
                true => count += 1,
                false => count += 2,
            }
        }
    }
    count
}