結果

問題 No.645 Count Permutation
ユーザー e869120e869120
提出日時 2018-02-02 22:45:32
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 64,524 KB
実行使用メモリ 53,632 KB
最終ジャッジ日時 2024-12-31 07:57:07
合計ジャッジ時間 8,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
53,504 KB
testcase_01 WA -
testcase_02 AC 196 ms
53,504 KB
testcase_03 AC 199 ms
53,376 KB
testcase_04 WA -
testcase_05 AC 196 ms
53,504 KB
testcase_06 AC 198 ms
53,504 KB
testcase_07 AC 197 ms
53,376 KB
testcase_08 WA -
testcase_09 AC 196 ms
53,504 KB
testcase_10 AC 199 ms
53,376 KB
testcase_11 AC 195 ms
53,376 KB
testcase_12 AC 199 ms
53,504 KB
testcase_13 AC 195 ms
53,504 KB
testcase_14 AC 198 ms
53,504 KB
testcase_15 WA -
testcase_16 AC 195 ms
53,504 KB
testcase_17 AC 195 ms
53,504 KB
testcase_18 AC 197 ms
53,504 KB
testcase_19 AC 194 ms
53,504 KB
testcase_20 AC 196 ms
53,504 KB
testcase_21 WA -
testcase_22 AC 195 ms
53,504 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 194 ms
53,504 KB
testcase_26 AC 195 ms
53,376 KB
testcase_27 AC 197 ms
53,504 KB
testcase_28 AC 195 ms
53,504 KB
testcase_29 AC 196 ms
53,504 KB
testcase_30 AC 194 ms
53,504 KB
testcase_31 AC 194 ms
53,376 KB
testcase_32 AC 195 ms
53,632 KB
testcase_33 AC 194 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

long long dp[100009][64], mod = 1000000007;

int main() {
	dp[0][0] = 1;
	for (int i = 0; i < 100008; i++) {
		for (int j = 0; j < 63; j++) {
			dp[i + 1][j] += dp[i][j] * i; dp[i + 1][j] %= mod;
			dp[i + 1][j + 1] += dp[i][j]; dp[i + 1][j + 1] %= mod;
		}
	}
	long long N, L, R, sum = 0; cin >> N >> L >> R;
	for (int i = 0; i < 61; i++) {
		if (L <= (1LL << i) && (1LL << i) <= R) {
			sum += dp[N - 1][i]; sum %= mod;
		}
	}
	cout << sum << endl;
	return 0;
}
0