結果

問題 No.645 Count Permutation
ユーザー square1001square1001
提出日時 2018-02-02 22:42:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 31,872 KB
実行使用メモリ 28,064 KB
最終ジャッジ日時 2024-06-10 01:26:06
合計ジャッジ時間 1,945 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 9 ms
5,632 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 8 ms
5,504 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 35 ms
14,464 KB
testcase_16 AC 29 ms
12,672 KB
testcase_17 AC 73 ms
27,136 KB
testcase_18 AC 24 ms
10,880 KB
testcase_19 AC 76 ms
28,032 KB
testcase_20 AC 78 ms
28,032 KB
testcase_21 AC 62 ms
22,784 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 76 ms
28,064 KB
testcase_25 AC 41 ms
16,512 KB
testcase_26 AC 63 ms
24,064 KB
testcase_27 AC 35 ms
14,464 KB
testcase_28 AC 25 ms
10,880 KB
testcase_29 AC 59 ms
22,144 KB
testcase_30 AC 61 ms
22,400 KB
testcase_31 AC 64 ms
24,320 KB
testcase_32 AC 19 ms
9,472 KB
testcase_33 AC 20 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
int N, dp[100009][64], ret, fact = 1, mod = 1000000007; long long L, R;
int main() {
	scanf("%d%lld%lld", &N, &L, &R); dp[0][0] = 1;
	for (int i = 1; i < N; i++) {
		fact = 1LL * fact * i % mod;
		for (int j = 0; j < 60; j++) dp[i][j] = (1LL * dp[i - 1][j] * (i - 1) + (j >= 1 ? dp[i - 1][j - 1] : 0)) % mod;
	}
	for (int i = 0; i < 60; i++) if (L <= 1LL << i && 1LL << i <= R) ret = (ret + dp[N - 1][i]) % mod;
	if (L == 0) ret = (ret + 1LL * fact * (N - 1)) % mod;
	printf("%d\n", ret);
	return 0;
}
0