結果
問題 | No.645 Count Permutation |
ユーザー | pekempey |
提出日時 | 2018-02-02 23:07:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,163 bytes |
コンパイル時間 | 683 ms |
コンパイル使用メモリ | 79,516 KB |
実行使用メモリ | 30,592 KB |
最終ジャッジ日時 | 2024-06-10 01:31:31 |
合計ジャッジ時間 | 2,209 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 6 ms
6,940 KB |
testcase_12 | AC | 4 ms
6,940 KB |
testcase_13 | AC | 6 ms
6,940 KB |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 20 ms
13,568 KB |
testcase_17 | AC | 47 ms
29,440 KB |
testcase_18 | AC | 16 ms
11,904 KB |
testcase_19 | AC | 50 ms
30,592 KB |
testcase_20 | AC | 51 ms
30,592 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 27 ms
17,792 KB |
testcase_26 | AC | 42 ms
25,984 KB |
testcase_27 | AC | 24 ms
15,488 KB |
testcase_28 | AC | 17 ms
11,520 KB |
testcase_29 | AC | 39 ms
24,064 KB |
testcase_30 | AC | 39 ms
24,320 KB |
testcase_31 | AC | 43 ms
26,240 KB |
testcase_32 | AC | 14 ms
10,112 KB |
testcase_33 | AC | 14 ms
9,984 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <map> using namespace std; const int mod = 1e9 + 7; struct Modint { int n; Modint(int n = 0) : n(n) {} }; Modint operator+(Modint a, Modint b) { return Modint((a.n += b.n) >= mod ? a.n - mod : a.n); } Modint operator-(Modint a, Modint b) { return Modint((a.n -= b.n) < 0 ? a.n + mod : a.n); } Modint operator*(Modint a, Modint b) { return Modint(1LL * a.n * b.n % mod); } Modint &operator+=(Modint &a, Modint b) { return a = a + b; } Modint &operator-=(Modint &a, Modint b) { return a = a - b; } Modint &operator*=(Modint &a, Modint b) { return a = a * b; } int main() { int n; long long L, R; cin >> n >> L >> R; vector<vector<Modint>> dp(n + 1, vector<Modint>(62)); dp[0][0] = 1; for (int i = 0; i < n; i++) { for (int j = 0; j <= 60; j++) { // update dp[i + 1][j + 1] += dp[i][j]; // keep if (i != n - 1) { dp[i + 1][j] += dp[i][j] * i; } } } Modint ans; for (int i = 1; i <= 61; i++) { long long way = 1LL << (i - 1); if (L <= way && way <= R) { ans += dp[n][i]; } } cout << ans.n << endl; }