結果

問題 No.391 CODING WAR
ユーザー tomeruntomerun
提出日時 2016-07-17 22:03:42
言語 Ruby
(3.4.1)
結果
AC  
実行時間 1,115 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-12-26 06:14:27
合計ジャッジ時間 10,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,032 KB
testcase_01 AC 85 ms
12,032 KB
testcase_02 AC 81 ms
12,032 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 AC 88 ms
12,032 KB
testcase_05 AC 93 ms
12,032 KB
testcase_06 AC 88 ms
12,032 KB
testcase_07 AC 92 ms
12,032 KB
testcase_08 AC 88 ms
12,032 KB
testcase_09 AC 1,109 ms
12,160 KB
testcase_10 AC 1,115 ms
12,416 KB
testcase_11 AC 877 ms
12,288 KB
testcase_12 AC 87 ms
12,160 KB
testcase_13 AC 1,067 ms
12,416 KB
testcase_14 AC 909 ms
12,416 KB
testcase_15 AC 930 ms
12,288 KB
testcase_16 AC 582 ms
12,288 KB
testcase_17 AC 686 ms
12,288 KB
testcase_18 AC 510 ms
12,416 KB
testcase_19 AC 524 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

MOD = 1_000_000_007
n,m = gets.split.map(&:to_i)

def powmod(v, p)
	return 1 if p == 0
	return v if p == 1
	ret = powmod(v, p / 2)
	ret *= ret
	ret %= MOD
	p % 2 == 1 ? ret * v % MOD : ret
end

ans = 0
sgn = 1
comb = 1
m.downto(1) { |i|
	ans += sgn * powmod(i, n) * comb
	sgn *= -1
	comb *= i * powmod(m + 1 - i, MOD - 2)
	comb %= MOD
}
puts ans % MOD

0