結果

問題 No.573 a^2[i] = a[i]
ユーザー bal4u
提出日時 2019-07-06 14:55:38
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 30,720 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-25 07:46:23
合計ジャッジ時間 1,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

// yukicoder: No.573 a^2[i] = a[i]
// 2019.7.6 bal4u

#include <stdio.h>

typedef long long ll;
#define M   1000000007
#define MAX 100000

int fact[MAX+2], inv[MAX+2], factinv[MAX+2];

int bigPow(int a, int p) {
	ll r = 1;
	while (p) {
		if (p & 1) r = r * a % M;
		a = (ll)a * a % M;
		p >>= 1;
	}
	return (int)r;
}

int main()
{
	int i, N;
	ll ans;

	scanf("%d", &N);
	fact[0] = fact[1] = 1, inv[1] = 1, factinv[0] = factinv[1] = 1;
	for (i = 2; i <= N; i++) {
		fact[i] = (ll)fact[i-1] * i % M;
		inv[i] = -(M/i) * (ll)inv[M % i] % M;
		factinv[i] = (ll)factinv[i-1] * inv[i] % M;
	}

	ans = 0;
    for (i = 0; i <= N; i++)
    	ans += (ll)factinv[i] * factinv[N-i] % M * bigPow(N-i, i) % M;
    ans = ans % M * fact[N] % M; if (ans < 0) ans += M;
    printf("%d\n", (int)ans);
}
0