結果

問題 No.573 a^2[i] = a[i]
ユーザー teketeke5000teketeke5000
提出日時 2017-10-10 21:17:43
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 846 bytes
コンパイル時間 1,490 ms
コンパイル使用メモリ 160,220 KB
実行使用メモリ 121,088 KB
最終ジャッジ日時 2024-11-17 08:33:27
合計ジャッジ時間 11,362 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,072 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 1 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 3 ms
7,504 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 3 ms
7,584 KB
testcase_24 AC 3 ms
9,440 KB
testcase_25 AC 3 ms
9,592 KB
testcase_26 AC 3 ms
9,480 KB
testcase_27 AC 3 ms
9,636 KB
testcase_28 AC 4 ms
11,612 KB
testcase_29 AC 4 ms
11,680 KB
testcase_30 AC 4 ms
11,652 KB
testcase_31 AC 4 ms
11,516 KB
testcase_32 AC 6 ms
21,832 KB
testcase_33 AC 12 ms
32,988 KB
testcase_34 AC 17 ms
35,276 KB
testcase_35 AC 19 ms
36,116 KB
testcase_36 AC 20 ms
36,392 KB
testcase_37 AC 23 ms
37,852 KB
testcase_38 AC 23 ms
37,900 KB
testcase_39 AC 35 ms
16,768 KB
testcase_40 AC 45 ms
19,328 KB
testcase_41 AC 70 ms
27,008 KB
testcase_42 AC 164 ms
50,432 KB
testcase_43 AC 160 ms
50,560 KB
testcase_44 AC 509 ms
121,088 KB
testcase_45 TLE -
testcase_46 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i,a,n) for(ll i=(a); i<(ll)(n); i++)

ll MOD = 1e9 + 7;

ll pow_mod(ll x, ll n) {
    ll re = 1;
    while(n > 0) {
        if (n & 1) re = (re * x) % MOD;
        x = (x * x) % MOD;
        n >>= 1;
    }
    return re;
}

//vector< vector <ll> > cm(100001, vector<ll>(100001, 0));
ll cm[10000][10000];

ll comb(ll n, ll r) {
    cm[n][r] = ( cm[n-1][r-1] ? cm[n-1][r-1] : comb(n-1, r-1) ) + ( cm[n-1][r] ? cm[n-1][r] : comb(n-1, r) );
    return cm[n][r] % MOD;
}


int main(void) {
    ll N;
    cin >> N;
    ll ans = 0;
    REP(i, 0, N+1) {
        cm[i][0] = 1;
        cm[i][i] = 1;
    }
    REP(x, 1, N) {
        //cout << comb(N, x) << endl;
        ans = (ans + ( comb(N, x) * pow_mod(x, N - x)) ) % MOD;
    }
    cout << ++ans << endl;
    return 0;
}
0