結果

問題 No.645 Count Permutation
ユーザー 193s193s
提出日時 2018-02-03 12:20:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,108 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 93,020 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-06-11 15:19:57
合計ジャッジ時間 2,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
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 WA -
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 10 ms
5,760 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 9 ms
5,504 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 32 ms
12,288 KB
testcase_17 AC 79 ms
25,856 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 84 ms
26,880 KB
testcase_20 AC 82 ms
26,752 KB
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 44 ms
15,872 KB
testcase_26 AC 69 ms
22,912 KB
testcase_27 AC 38 ms
13,952 KB
testcase_28 AC 26 ms
10,624 KB
testcase_29 AC 61 ms
21,248 KB
testcase_30 AC 63 ms
21,504 KB
testcase_31 AC 69 ms
23,168 KB
testcase_32 AC 22 ms
9,216 KB
testcase_33 AC 22 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cmath>
#include <iomanip>
#include <cassert>
#include <bitset>
using namespace std;

typedef pair<int, int> P;
#define rep(i, n) for (int i=0; i<(n); i++)
#define all(c) (c).begin(), (c).end()
#define uniq(c) c.erase(unique(all(c)), (c).end())
#define index(xs, x) (int)(lower_bound(all(xs), x) - xs.begin())
#define _1 first
#define _2 second
#define pb push_back
#define INF 1145141919
#define MOD 1000000007
inline void add(int &x, int v) { x += v; if (x >= MOD) x -= MOD; }

int N;
long long L, R;
int dp[100001][60];
signed main() {
  ios::sync_with_stdio(false); cin.tie(0);
  cin >> N >> L >> R;
  dp[N-1][0] = 1;
  for (int x=N-1; x>=1; x--) {
    rep(j, 60) {
      if (dp[x][j] == 0) continue;
      if (j+1<60) add(dp[x-1][j+1], dp[x][j]);
      add(dp[x-1][j], (1LL*(N-1-x)*dp[x][j])%MOD);
    }
  }
  int s = 0;
  rep(b, 60) {
    if (L <= (1LL<<b) && (1LL<<b) <= R) add(s, dp[0][b]);
  }
  cout << s << "\n";
  return 0;
}
0