結果

問題 No.573 a^2[i] = a[i]
ユーザー kyawashellkyawashell
提出日時 2017-10-06 23:07:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 1,380 ms
コンパイル使用メモリ 167,784 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 01:54:33
合計ジャッジ時間 2,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
typedef long long ll;
typedef unsigned long long ull;
using namespace std;
#define pb push_back
int dy[]={0, 0, 1, -1, 1, 1, -1, -1};
int dx[]={1, -1, 0, 0, 1, -1, -1, 1};

#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define mp make_pair
#define fi first
#define sc second
#define M 1000000007
ll n,ans;

typedef ll MOD_POW_TYPE;
MOD_POW_TYPE mod_pow(MOD_POW_TYPE x, MOD_POW_TYPE n, MOD_POW_TYPE mod) {
	MOD_POW_TYPE res = 1;
	while (n > 0) {
		if (n & 1) res = res * x % mod; // 最下位ビットが立っているときにx^(2^i)を掛ける
		x = x * x % mod; // xを順次二乗していく
		n >>= 1;
	}
	return res;
}

int main(){
	cin >> n;

	ll c = n,ans = 0;
	for(ll x = 1;x <= n;x++){
		ans += c * mod_pow(x,n - x,M) % M;
		ans %= M;
		c = (c * (n - x)) % M;
		c = (c * mod_pow(x + 1,M - 2,M)) % M;
	}
	cout << ans << endl;
	return 0;
}
0