結果

問題 No.3048 Order and Harmony
ユーザー claw88claw88
提出日時 2019-04-01 23:56:19
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,168 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 119,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 18:53:55
合計ジャッジ時間 40,742 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 288 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 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 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 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 1 ms
5,376 KB
testcase_25 AC 1,534 ms
5,376 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1,965 ms
6,944 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 190 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 1,510 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 TLE -
testcase_37 AC 964 ms
5,376 KB
testcase_38 AC 6 ms
5,376 KB
testcase_39 AC 1,593 ms
5,376 KB
testcase_40 AC 1,080 ms
5,376 KB
testcase_41 AC 1,140 ms
5,376 KB
testcase_42 TLE -
testcase_43 AC 1 ms
5,376 KB
testcase_44 TLE -
testcase_45 AC 7 ms
5,376 KB
testcase_46 AC 1,412 ms
5,376 KB
testcase_47 AC 1,955 ms
6,940 KB
testcase_48 TLE -
testcase_49 AC 1 ms
5,376 KB
testcase_50 TLE -
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 202 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 697 ms
5,376 KB
testcase_57 AC 2 ms
5,376 KB
testcase_58 AC 1 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 860 ms
5,376 KB
testcase_61 AC 1,705 ms
5,376 KB
testcase_62 AC 153 ms
5,376 KB
testcase_63 AC 1 ms
5,376 KB
testcase_64 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include "bits/stdc++.h"
#include<iostream>
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 = 0; i < K; i++)
	{
		bunshi = bunshi * (i + K + 1) % mod;
		bunbo = bunbo * (i + 1) % mod;
	}
	cout << (bunshi * powmod(bunbo, mod - 2, mod) % mod) << endl;

}

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