結果

問題 No.3048 Order and Harmony
ユーザー claw88claw88
提出日時 2019-04-01 23:46:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,128 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 200,032 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-05 09:41:05
合計ジャッジ時間 60,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 272 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
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 1 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,469 ms
5,376 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 WA -
testcase_30 AC 1,859 ms
6,944 KB
testcase_31 WA -
testcase_32 AC 177 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 1,465 ms
5,376 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 912 ms
5,376 KB
testcase_38 AC 6 ms
5,376 KB
testcase_39 AC 1,505 ms
5,376 KB
testcase_40 AC 1,028 ms
5,376 KB
testcase_41 AC 1,081 ms
5,376 KB
testcase_42 TLE -
testcase_43 WA -
testcase_44 TLE -
testcase_45 AC 6 ms
5,376 KB
testcase_46 AC 1,365 ms
5,376 KB
testcase_47 AC 1,832 ms
6,944 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 WA -
testcase_53 AC 194 ms
5,376 KB
testcase_54 WA -
testcase_55 TLE -
testcase_56 AC 651 ms
5,376 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 AC 804 ms
5,376 KB
testcase_61 AC 1,578 ms
5,376 KB
testcase_62 AC 148 ms
5,376 KB
testcase_63 WA -
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;
	}

	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