結果

問題 No.391 CODING WAR
ユーザー At-sushiAt-sushi
提出日時 2020-06-02 20:58:36
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 871 bytes
コンパイル時間 14,438 ms
コンパイル使用メモリ 390,176 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 12:59:13
合計ジャッジ時間 13,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 1 ms
6,944 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn getline() -> String{
	let mut __ret=String::new();
	std::io::stdin().read_line(&mut __ret).ok();
	return __ret;
}

fn mpow(x: i64,  y: i64) -> i64 {
    match y {
        0 => 1,
        _ => (x.pow((y % 2) as u32) * mpow(x * x % 1000000007, y / 2)) % 1000000007
    }
}

fn main(){
	let s=getline();
	let a:Vec<_>=s.trim().split(' ').collect();
	let (n, m): (i64, i64) = (a[0].parse().unwrap(), a[1].parse().unwrap());
	let mut r = mpow(m, n);
	let mut zeros = m;
	let mut zdiv =1;
	(1..m).for_each(|i| {
	    let patterns = mpow(m-i, n) % 1000000007;
	    
	    r = (if (i % 2) == 0 {r + patterns * (zeros * mpow(zdiv, 1000000007-2)) % 1000000007} else {(r + 1000000007 - patterns * (zeros * mpow(zdiv, 1000000007-2)) % 1000000007) % 1000000007}) % 1000000007;
	    zeros = zeros * (m-i) % 1000000007;
	    zdiv = zdiv * (i+1) % 1000000007;
	});
	print!("{} ", r);
}
0