結果

問題 No.573 a^2[i] = a[i]
ユーザー 夜
提出日時 2021-02-15 21:14:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 93,368 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 12:56:26
合計ジャッジ時間 2,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 9 ms
6,944 KB
testcase_02 AC 9 ms
6,940 KB
testcase_03 AC 9 ms
6,940 KB
testcase_04 AC 8 ms
6,940 KB
testcase_05 AC 9 ms
6,944 KB
testcase_06 AC 8 ms
6,940 KB
testcase_07 AC 9 ms
6,944 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 8 ms
6,940 KB
testcase_11 AC 9 ms
6,944 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 9 ms
6,944 KB
testcase_15 AC 9 ms
6,940 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 8 ms
6,940 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 9 ms
6,940 KB
testcase_22 AC 8 ms
6,940 KB
testcase_23 AC 9 ms
6,940 KB
testcase_24 AC 9 ms
6,940 KB
testcase_25 AC 9 ms
6,940 KB
testcase_26 AC 8 ms
6,940 KB
testcase_27 AC 8 ms
6,944 KB
testcase_28 AC 8 ms
6,940 KB
testcase_29 AC 8 ms
6,944 KB
testcase_30 AC 9 ms
6,940 KB
testcase_31 AC 9 ms
6,940 KB
testcase_32 AC 9 ms
6,940 KB
testcase_33 AC 9 ms
6,944 KB
testcase_34 AC 9 ms
6,940 KB
testcase_35 AC 8 ms
6,944 KB
testcase_36 AC 9 ms
6,940 KB
testcase_37 AC 9 ms
6,944 KB
testcase_38 AC 9 ms
6,940 KB
testcase_39 AC 9 ms
6,940 KB
testcase_40 AC 9 ms
6,944 KB
testcase_41 AC 9 ms
6,944 KB
testcase_42 AC 9 ms
6,940 KB
testcase_43 AC 10 ms
6,940 KB
testcase_44 AC 10 ms
6,940 KB
testcase_45 AC 12 ms
6,944 KB
testcase_46 AC 45 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
long long fac[100010], finv[100010], inv[100010];
long long mod = 1000000007;
void COMinit() {
	fac[0] = fac[1] = 1;
	finv[0] = finv[1] = 1;
	inv[1] = 1;
	for (int i = 2; i < 100010; i++) {
		fac[i] = fac[i - 1] * i % mod;
		inv[i] = mod - inv[mod % i] * (mod / i) % mod;
		finv[i] = finv[i - 1] * inv[i] % mod;
	}
}
long long COM(long long n, long long k) {
	if (n < k) return 0;
	if (n < 0 || k < 0) return 0;
	return fac[n] * (finv[k] * finv[n - k] % mod) % mod;
}
int main() {
	COMinit();
	long long n;
	cin >> n;
	long long ans = 0;
	for (long long i = 0; i < n; i++) {
		long long x = n - i;
		long long y = i;
		long long ans1 = 1;
		while (y > 0) {
			if ((y & 1) == 1) {
				ans1 = ans1 * x % mod;
			}
			x = x * x % mod;
			y >>= 1;
		}
		ans += COM(n, i) * ans1 % mod;
		ans %= mod;
	}
	cout << ans << endl;
}
0