結果

問題 No.573 a^2[i] = a[i]
ユーザー hiroakiehiroakie
提出日時 2017-12-22 21:34:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 58,072 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-10 03:06:02
合計ジャッジ時間 6,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
typedef long long int ll;
const ll MOD = 1e9 + 7, N = 100000;
ll n, ans = 0, lc = 1, cmb[2][N+1] = {};

ll pw2(ll a, ll b) {
	ll la = a,val=1;
	for (; b != 0;b= b >> 1) {
		if ((b & 1) != 0) val = (val*la) % MOD;
		la = (la*la) % MOD;
	}
	return val;
}

void comb() {
	cmb[0][0] = 1;
	for (int i = 1; i < n; i++) {
		cmb[i % 2][0] = 1; cmb[i % 2][i] = 1;
		for (int j = 1; j < i; j++) {
			cmb[i % 2][j] = cmb[(i - 1) % 2][j - 1] + cmb[(i - 1) % 2][j];
			cmb[i % 2][j] %= MOD;
		}
		fill(cmb[(i-1) % 2], cmb[(i-1) % 2 + 1],0);
	}

}

int main() {
	cin >> n;
	comb();
	for (int i = 1; i <= n; i++) {
		lc = (lc*(n - i + 1)) / i;
		ans += (lc%MOD) * pw2(i, n - i);
		ans %= MOD;
	}
	cout << ans << endl;
	return 0;
}
0