結果

問題 No.523 LED
ユーザー snrnsidysnrnsidy
提出日時 2021-06-10 11:46:39
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 199,856 KB
実行使用メモリ 159,744 KB
最終ジャッジ日時 2024-11-29 18:47:10
合計ジャッジ時間 7,408 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
159,488 KB
testcase_01 AC 142 ms
159,600 KB
testcase_02 AC 143 ms
159,584 KB
testcase_03 AC 160 ms
159,576 KB
testcase_04 AC 141 ms
159,744 KB
testcase_05 AC 237 ms
159,488 KB
testcase_06 AC 142 ms
159,588 KB
testcase_07 AC 142 ms
159,616 KB
testcase_08 AC 141 ms
159,548 KB
testcase_09 AC 143 ms
159,728 KB
testcase_10 AC 141 ms
159,732 KB
testcase_11 AC 141 ms
159,564 KB
testcase_12 AC 140 ms
159,568 KB
testcase_13 AC 159 ms
159,692 KB
testcase_14 AC 140 ms
159,616 KB
testcase_15 AC 140 ms
159,744 KB
testcase_16 AC 143 ms
159,616 KB
testcase_17 AC 141 ms
159,744 KB
testcase_18 AC 235 ms
159,616 KB
testcase_19 AC 174 ms
159,724 KB
testcase_20 AC 169 ms
159,488 KB
testcase_21 AC 211 ms
159,724 KB
testcase_22 AC 219 ms
159,600 KB
testcase_23 AC 220 ms
159,576 KB
testcase_24 AC 142 ms
159,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

long long int f[20000005];
const long long int MOD = 1e9 + 7;

long long int mypow(long long int x, long long int n)
{
	long long int res = 1;
	while (n > 0)
	{
		if (n % 2 == 1)
		{
			res = ((res % MOD) * (x % MOD) % MOD);
			res %= MOD;
		}
		x = ((x % MOD) * (x % MOD) % MOD);
		x %= MOD;
		n /= 2;
	}
	return res;
}
int main(void)
{
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	int N;

	cin >> N;

	f[0] = 1;
	for (long long int i = 1; i < 20000005; i++)
	{
		f[i] = ((f[i - 1] % MOD) * (i % MOD) % MOD);
		f[i] %= MOD;
	}

	long long int inv = mypow(f[2], MOD - 2);
	
	long long int res = f[2 * N];
	for (int i = 0; i < N; i++)
	{
		res = ((res % MOD) * (inv % MOD) % MOD);
		res %= MOD;
	}

	cout << res << '\n';

	return 0;
}
0