結果

問題 No.573 a^2[i] = a[i]
ユーザー bal4u
提出日時 2019-07-06 14:37:52
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-25 07:40:43
合計ジャッジ時間 1,665 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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];

ll comb(int n, int k) {
    return (ll)fact[n] * factinv[k] % M * factinv[n-k] % M;
}

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 += comb(N, i) * bigPow(N-i, i) % M;
    ans %= M; if (ans < 0) ans += M;
    printf("%d\n", (int)ans);
}
0