結果
問題 | No.573 a^2[i] = a[i] |
ユーザー | hatoo |
提出日時 | 2017-10-11 21:10:10 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 3,809 bytes |
コンパイル時間 | 12,403 ms |
コンパイル使用メモリ | 392,432 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-17 09:45:21 |
合計ジャッジ時間 | 14,132 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,816 KB |
testcase_02 | AC | 4 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,816 KB |
testcase_04 | AC | 3 ms
6,816 KB |
testcase_05 | AC | 3 ms
6,820 KB |
testcase_06 | AC | 4 ms
6,820 KB |
testcase_07 | AC | 3 ms
6,820 KB |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | AC | 3 ms
6,816 KB |
testcase_10 | AC | 4 ms
6,820 KB |
testcase_11 | AC | 3 ms
6,820 KB |
testcase_12 | AC | 3 ms
6,816 KB |
testcase_13 | AC | 3 ms
6,820 KB |
testcase_14 | AC | 3 ms
6,820 KB |
testcase_15 | AC | 3 ms
6,820 KB |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | AC | 3 ms
6,820 KB |
testcase_18 | AC | 3 ms
6,820 KB |
testcase_19 | AC | 3 ms
6,816 KB |
testcase_20 | AC | 3 ms
6,816 KB |
testcase_21 | AC | 3 ms
6,816 KB |
testcase_22 | AC | 3 ms
6,820 KB |
testcase_23 | AC | 4 ms
6,820 KB |
testcase_24 | AC | 3 ms
6,816 KB |
testcase_25 | AC | 4 ms
6,820 KB |
testcase_26 | AC | 3 ms
6,820 KB |
testcase_27 | AC | 3 ms
6,816 KB |
testcase_28 | AC | 3 ms
6,820 KB |
testcase_29 | AC | 4 ms
6,816 KB |
testcase_30 | AC | 4 ms
6,820 KB |
testcase_31 | AC | 3 ms
6,820 KB |
testcase_32 | AC | 3 ms
6,816 KB |
testcase_33 | AC | 3 ms
6,820 KB |
testcase_34 | AC | 3 ms
6,820 KB |
testcase_35 | AC | 3 ms
6,820 KB |
testcase_36 | AC | 4 ms
6,820 KB |
testcase_37 | AC | 3 ms
6,820 KB |
testcase_38 | AC | 4 ms
6,820 KB |
testcase_39 | AC | 4 ms
6,820 KB |
testcase_40 | AC | 3 ms
6,816 KB |
testcase_41 | AC | 4 ms
6,816 KB |
testcase_42 | AC | 5 ms
6,816 KB |
testcase_43 | AC | 4 ms
6,816 KB |
testcase_44 | AC | 5 ms
6,820 KB |
testcase_45 | AC | 7 ms
6,820 KB |
testcase_46 | AC | 42 ms
6,820 KB |
ソースコード
#[allow(unused_imports)] use std::cmp::{max, min}; #[allow(unused_imports)] use std::collections::{HashMap, HashSet}; mod util { use std::io::stdin; use std::str::FromStr; use std::fmt::Debug; #[allow(dead_code)] pub fn line() -> String { let mut line: String = String::new(); stdin().read_line(&mut line).unwrap(); line.trim().to_string() } #[allow(dead_code)] pub fn get<T: FromStr>() -> T where <T as FromStr>::Err: Debug, { let mut line: String = String::new(); stdin().read_line(&mut line).unwrap(); line.trim().parse().unwrap() } #[allow(dead_code)] pub fn gets<T: FromStr>() -> Vec<T> where <T as FromStr>::Err: Debug, { let mut line: String = String::new(); stdin().read_line(&mut line).unwrap(); line.split_whitespace() .map(|t| t.parse().unwrap()) .collect() } #[allow(dead_code)] pub fn get2<T: FromStr, U: FromStr>() -> (T, U) where <T as FromStr>::Err: Debug, <U as FromStr>::Err: Debug, { let mut line: String = String::new(); stdin().read_line(&mut line).unwrap(); let mut iter = line.split_whitespace(); ( iter.next().unwrap().parse().unwrap(), iter.next().unwrap().parse().unwrap(), ) } #[allow(dead_code)] pub fn get3<S: FromStr, T: FromStr, U: FromStr>() -> (S, T, U) where <S as FromStr>::Err: Debug, <T as FromStr>::Err: Debug, <U as FromStr>::Err: Debug, { let mut line: String = String::new(); stdin().read_line(&mut line).unwrap(); let mut iter = line.split_whitespace(); ( iter.next().unwrap().parse().unwrap(), iter.next().unwrap().parse().unwrap(), iter.next().unwrap().parse().unwrap(), ) } } #[allow(unused_macros)] macro_rules! debug { ($x: expr) => { println!("{}: {:?}", stringify!($x), $x) } } // (gcd, x, y) fn extgcd(a: i64, b: i64) -> (i64, i64, i64) { if b == 0 { (a, 1, 0) } else { let (gcd, x, y) = extgcd(b, a % b); (gcd, y, x - (a / b) * y) } } fn mod_pow(x: u64, n: u64, m: u64) -> u64 { let mut res = 1; let mut x = x; let mut n = n; while n > 0 { if n & 1 == 1 { res = (res * x) % m; } x = (x * x) % m; n = n >> 1; } res } fn mod_inverse(a: u64, m: u64) -> u64 { let (_, x, _) = extgcd(a as i64, m as i64); ((m as i64 + x) as u64 % m) % m } fn fact_table(len: usize, m: u64) -> Vec<u64> { let mut res = vec![1; len]; for i in 1..len { res[i] = (i as u64 * res[i - 1]) % m; } res } // (a mod p, e when n! = a p^e) fn mod_fact(n: u64, p: u64, fact: &Vec<u64>) -> (u64, u64) { if n == 0 { (1, 0) } else { let (a, b) = mod_fact(n / p, p, fact); let e = b + n / p; if n / p % 2 != 0 { (a * (p - fact[(n % p) as usize]) % p, e) } else { (a * fact[(n % p) as usize] % p, e) } } } fn mod_comb(n: u64, k: u64, p: u64, fact: &Vec<u64>) -> u64 { if n < k { 0 } else { let (a1, e1) = mod_fact(n, p, fact); let (a2, e2) = mod_fact(k, p, fact); let (a3, e3) = mod_fact(n - k, p, fact); if e1 > e2 + e3 { 0 } else { a1 * mod_inverse(a2 * a3 % p, p) % p } } } const M: u64 = 1000000007; fn main() { let n: u64 = util::get(); let fact = fact_table(200000, M); let mut a = 0; for i in 1..n + 1 { let p = mod_comb(n, i, M, &fact) * mod_pow(i, n - i, M) % M; a = (a + p) % M; } println!("{}", a); }