結果
問題 | No.2645 Sum of Divisors? |
ユーザー | koba-e964 |
提出日時 | 2024-04-13 10:34:46 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 67 ms / 2,000 ms |
コード長 | 1,795 bytes |
コンパイル時間 | 11,200 ms |
コンパイル使用メモリ | 381,268 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-10-02 23:58:26 |
合計ジャッジ時間 | 12,859 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 37 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 | 67 ms
5,376 KB |
testcase_07 | AC | 64 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 7 ms
5,376 KB |
testcase_25 | AC | 6 ms
5,376 KB |
testcase_26 | AC | 11 ms
5,376 KB |
testcase_27 | AC | 11 ms
5,376 KB |
testcase_28 | AC | 24 ms
5,376 KB |
testcase_29 | AC | 63 ms
5,376 KB |
testcase_30 | AC | 26 ms
5,376 KB |
testcase_31 | AC | 39 ms
5,376 KB |
testcase_32 | AC | 51 ms
5,376 KB |
testcase_33 | AC | 27 ms
5,376 KB |
testcase_34 | AC | 48 ms
5,376 KB |
ソースコード
use std::cmp::*; use std::io::Read; fn get_word() -> String { let stdin = std::io::stdin(); let mut stdin=stdin.lock(); let mut u8b: [u8; 1] = [0]; loop { let mut buf: Vec<u8> = Vec::with_capacity(16); loop { let res = stdin.read(&mut u8b); if res.unwrap_or(0) == 0 || u8b[0] <= b' ' { break; } else { buf.push(u8b[0]); } } if buf.len() >= 1 { let ret = String::from_utf8(buf).unwrap(); return ret; } } } fn get<T: std::str::FromStr>() -> T { get_word().parse().ok().unwrap() } // https://yukicoder.me/problems/no/2645 (3.5) // 式変形すると、\sum_{i=1}^n \sum{j=1}^{floor(n/i)} 1/(ij) である。 // 以下をやる必要がある: // - b_a := \sum_{j=1}^{a} 1/j を高速に求める // - sqrt(n) との大小で b_a の加算の方法を変える // b_a - ln(a + 0.5) は O(1/a^2) のはずなので、それを使って誤差を小さくする // Tags: sqrt-decomposition, sum-of-divisors, harmonic-series fn main() { const W: usize = 100_000; let mut dp = vec![0.0; W]; for i in 1..W { dp[i] = dp[i - 1] + 1.0 / i as f64; } let f = |x: i64| { if x < W as i64 { dp[x as usize] } else { (x as f64 + 0.5).ln() + 0.57721_56649_01532_86060 } }; let n: i64 = get(); let mut s = 1; while s * s <= n { s += 1; } s -= 1; let mut sum = 0.0; for i in 1..s + 1 { sum += 1.0 / i as f64 * f(n / i); } for i in 1..s + 1 { let lo = max(s, n / (i + 1)); let hi = n / i; if lo < hi { sum += (f(hi) - f(lo)) as f64 * f(i); } } println!("{}", sum); }