結果

問題 No.391 CODING WAR
ユーザー FF256grhyFF256grhy
提出日時 2016-07-09 00:16:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 776 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 24,320 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-13 07:47:53
合計ジャッジ時間 1,047 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 0 ms
6,816 KB
testcase_03 AC 0 ms
6,820 KB
testcase_04 AC 0 ms
6,820 KB
testcase_05 AC 0 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 0 ms
6,816 KB
testcase_09 AC 30 ms
6,816 KB
testcase_10 AC 29 ms
6,820 KB
testcase_11 AC 0 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 26 ms
6,820 KB
testcase_14 AC 23 ms
6,816 KB
testcase_15 AC 26 ms
6,816 KB
testcase_16 AC 16 ms
6,816 KB
testcase_17 AC 19 ms
6,816 KB
testcase_18 AC 12 ms
6,820 KB
testcase_19 AC 13 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:42:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   42 |         scanf("%lld%lld", &n, &m);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

#define MOD 1000000007
typedef long long int LL;

LL inv(LL n) {
	LL ans = 1;
	int b = MOD - 2;
	
	while(b) {
		if(b % 2) { ans *= n; ans %= MOD; }
		n *= n; n %= MOD;
		b /= 2;
	}
	
	return ans;
}

LL pow_mod(LL a, LL b) {
	LL ans = 1;
	while(b) {
		if(b % 2) { ans *= a; ans %= MOD; }
		a *= a; a %= MOD;
		b /= 2;
	}
	
	return ans;
}

LL comb = 1;
LL comb_mod(LL a, LL b) {
	LL ans = comb;
	
	comb *= a - (b); comb %= MOD;
	comb *= inv(b + 1); comb %= MOD;
	
	return ans;
}

int main() {
	LL n, m;
	scanf("%lld%lld", &n, &m);
	
	LL ans = 0;
	if(n >= m) {
		for(LL i = 0; i < m; i++) {
			LL s = (i % 2 == 0 ? 1 : -1);
			ans += ( pow_mod(m - i, n) * comb_mod(m, i) % MOD * s + MOD ) % MOD;
			ans %= MOD;
		}
	}
	
	printf("%lld\n", ans);
	
	return 0;
}
0