結果

問題 No.3048 Order and Harmony
ユーザー claw88claw88
提出日時 2019-04-01 23:50:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,138 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 200,056 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 09:53:06
合計ジャッジ時間 8,238 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 304 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1,620 ms
5,376 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 2 ms
5,376 KB
testcase_30 TLE -
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 199 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 1,595 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 TLE -
testcase_37 AC 999 ms
5,376 KB
testcase_38 AC 7 ms
5,376 KB
testcase_39 AC 1,675 ms
5,376 KB
testcase_40 AC 1,130 ms
5,376 KB
testcase_41 AC 1,188 ms
5,376 KB
testcase_42 TLE -
testcase_43 AC 2 ms
5,376 KB
testcase_44 TLE -
testcase_45 AC 7 ms
5,376 KB
testcase_46 AC 1,500 ms
5,376 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 2 ms
5,376 KB
testcase_50 TLE -
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 210 ms
5,376 KB
testcase_54 AC 2 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 735 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 905 ms
5,376 KB
testcase_61 AC 1,785 ms
5,376 KB
testcase_62 AC 168 ms
5,376 KB
testcase_63 AC 3 ms
5,376 KB
testcase_64 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define mod 1000000007
#define dom 998244353
#define all(c) begin(c),end(c)
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(b)-1;i>=(a);i--)
template <typename T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; }
template <typename T> bool chmin(T &a, const T &b) { if (b < a) { a = b; return true; } return false; }
#define long long long
#define List vector
#define var auto
#define Count size()
#define Length size()
int dd[] = { 0, 1, 0, -1, 0 }; //→↓←↑

long powmod(long a, long b, long p)
{
	if (b == 0) return 1;
	if (b % 2 == 0)
	{
		long d = powmod(a, b / 2, p);
		return d * d % p;
	}
	else
	{
		return a * powmod(a, b - 1, p) % p;
	}
}
void solve()
{
	int K;
	cin >> K;
	if (K % 2 == 1)
	{
		cout << 0 << endl;
		return;
	}

	K >>= 1;
	long bunshi = 1;
	long bunbo = 1;
	for (int i = 1; i <= K; i++)
	{
		bunshi = bunshi * (i + K) % mod;
		bunbo = bunbo * i % mod;
	}
	cout << (bunshi * powmod(bunbo, mod - 2, mod) % mod) << endl;

}

int main()
{
	cin.tie(0);
	ios::sync_with_stdio(false);
	solve();
	return 0;
}
0