結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 82 ms
12,032 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 78 ms
12,032 KB
testcase_05 AC 80 ms
12,160 KB
testcase_06 AC 84 ms
12,160 KB
testcase_07 AC 80 ms
12,288 KB
testcase_08 AC 80 ms
12,032 KB
testcase_09 AC 1,089 ms
12,416 KB
testcase_10 AC 1,054 ms
12,288 KB
testcase_11 AC 811 ms
12,416 KB
testcase_12 AC 82 ms
12,032 KB
testcase_13 AC 1,026 ms
12,160 KB
testcase_14 AC 853 ms
12,288 KB
testcase_15 AC 958 ms
12,288 KB
testcase_16 AC 593 ms
12,288 KB
testcase_17 AC 689 ms
12,416 KB
testcase_18 AC 499 ms
12,288 KB
testcase_19 AC 515 ms
12,288 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