結果

問題 No.8048 Order and Harmony
ユーザー e869120e869120
提出日時 2019-04-01 21:40:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 706 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 65,268 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-26 21:54:21
合計ジャッジ時間 79,211 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
10,020 KB
testcase_02 AC 45 ms
13,632 KB
testcase_03 TLE -
testcase_04 AC 2 ms
10,020 KB
testcase_05 AC 2 ms
10,020 KB
testcase_06 AC 27 ms
10,148 KB
testcase_07 AC 2 ms
10,148 KB
testcase_08 AC 28 ms
13,636 KB
testcase_09 AC 2 ms
10,148 KB
testcase_10 AC 29 ms
13,640 KB
testcase_11 AC 10 ms
10,148 KB
testcase_12 AC 2 ms
10,148 KB
testcase_13 AC 2 ms
10,016 KB
testcase_14 AC 2 ms
13,632 KB
testcase_15 AC 43 ms
10,020 KB
testcase_16 AC 2 ms
13,636 KB
testcase_17 AC 2 ms
10,016 KB
testcase_18 AC 2 ms
13,632 KB
testcase_19 AC 45 ms
10,144 KB
testcase_20 AC 36 ms
13,636 KB
testcase_21 AC 34 ms
10,144 KB
testcase_22 AC 18 ms
13,636 KB
testcase_23 AC 2 ms
10,016 KB
testcase_24 AC 2 ms
13,636 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 2 ms
10,020 KB
testcase_30 TLE -
testcase_31 AC 2 ms
10,016 KB
testcase_32 TLE -
testcase_33 AC 2 ms
10,020 KB
testcase_34 TLE -
testcase_35 AC 2 ms
10,020 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 739 ms
13,636 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 2 ms
10,016 KB
testcase_44 TLE -
testcase_45 AC 856 ms
10,020 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 2 ms
6,816 KB
testcase_50 TLE -
testcase_51 AC 2 ms
6,820 KB
testcase_52 AC 2 ms
6,816 KB
testcase_53 TLE -
testcase_54 AC 2 ms
6,816 KB
testcase_55 AC 2 ms
6,820 KB
testcase_56 TLE -
testcase_57 AC 2 ms
6,820 KB
testcase_58 AC 2 ms
6,816 KB
testcase_59 AC 2 ms
6,816 KB
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 AC 2 ms
6,816 KB
testcase_64 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

long long modpow(long long a, long long b, long long m) {
	long long p = 1, q = a;
	for (int i = 0; i < 33; i++) {
		if ((b / (1LL << i)) % 2 == 1) { p *= q; p %= m; }
		q *= q; q %= m;
	}
	return p;
}

long long Div(long long a, long long b, long long m) {
	return (a * modpow(b, m - 2, m)) % m;
}

long long solve(long long N, long long m) {
	long long ret = 1;
	for (long long i = N + 1; i <= 2 * N; i++) { ret *= i; ret %= m; }
	for (long long i = 1; i <= N; i++) { ret = Div(ret, i, m); ret %= m; }
	return ret;
}

int main() {
	long long K; cin >> K;
	if (K % 2 == 1) { cout << "0" << endl; return 0; }
	cout << solve(K / 2, 1000000007) << endl;
	return 0;
}
0