結果

問題 No.314 ケンケンパ
ユーザー cherrypi59cherrypi59
提出日時 2018-07-07 19:40:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 123 ms / 1,000 ms
コード長 820 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 56,356 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-07-05 05:32:29
合計ジャッジ時間 3,635 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
18,944 KB
testcase_01 AC 119 ms
18,928 KB
testcase_02 AC 120 ms
19,072 KB
testcase_03 AC 119 ms
18,944 KB
testcase_04 AC 118 ms
18,936 KB
testcase_05 AC 118 ms
19,052 KB
testcase_06 AC 118 ms
18,944 KB
testcase_07 AC 119 ms
18,916 KB
testcase_08 AC 117 ms
18,944 KB
testcase_09 AC 118 ms
18,944 KB
testcase_10 AC 120 ms
18,956 KB
testcase_11 AC 119 ms
18,944 KB
testcase_12 AC 119 ms
19,072 KB
testcase_13 AC 118 ms
18,944 KB
testcase_14 AC 119 ms
19,028 KB
testcase_15 AC 119 ms
18,944 KB
testcase_16 AC 118 ms
18,944 KB
testcase_17 AC 118 ms
18,816 KB
testcase_18 AC 119 ms
19,044 KB
testcase_19 AC 123 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#define M 1000000007
#define MAX_N 1000000
using namespace std;
typedef long long ll;

ll fact_n[MAX_N + 1], fact_inv[MAX_N + 1];

ll mod_pow(ll a, ll n) {
	ll x = 1;
	while (n > 0) {
		if (n & 1) x = x * a % M;
		a = a * a % M;
		n >>= 1;
	}
	return x;
}


ll combination(int n, int r) {
	if (n == 0 && r == 0) return 1;
	else if (n < r || n < 0) return 0;

	ll com = fact_n[n] * fact_inv[r] % M;
	return com * fact_inv[n - r] % M;
}



int main()
{
	int n, j;
	ll com = 0;
	cin >> n;

	fact_n[0] = fact_inv[0] = 1;
	for (int i = 1;i <= MAX_N;i++) {
		fact_n[i] = fact_n[i - 1] * i % M;
		fact_inv[i] = mod_pow(fact_n[i], M - 2);
	}

	for (int i = 0;i <= n;i++) {
		if (n - 2 * i >= 0) {
			j = (n - 2 * i) / 3;
			com += combination(i + j, i) % M;
		}
	}

	cout << com % M << endl;
    return 0;
}

0