結果

問題 No.1785 Inequality Signs
ユーザー SSRSSSRS
提出日時 2021-12-14 00:04:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,350 bytes
コンパイル時間 1,875 ms
コンパイル使用メモリ 172,060 KB
実行使用メモリ 9,736 KB
最終ジャッジ日時 2024-07-23 00:04:03
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 14 ms
6,812 KB
testcase_02 AC 57 ms
8,724 KB
testcase_03 AC 74 ms
9,380 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 33 ms
6,944 KB
testcase_06 AC 66 ms
9,328 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 64 ms
8,972 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 46 ms
7,088 KB
testcase_11 AC 16 ms
6,940 KB
testcase_12 AC 29 ms
6,944 KB
testcase_13 AC 12 ms
6,944 KB
testcase_14 AC 38 ms
6,944 KB
testcase_15 AC 31 ms
6,940 KB
testcase_16 AC 22 ms
6,944 KB
testcase_17 AC 49 ms
6,988 KB
testcase_18 AC 47 ms
7,108 KB
testcase_19 AC 38 ms
6,940 KB
testcase_20 AC 44 ms
6,940 KB
testcase_21 AC 39 ms
6,940 KB
testcase_22 AC 15 ms
6,940 KB
testcase_23 AC 22 ms
6,940 KB
testcase_24 AC 71 ms
9,356 KB
testcase_25 AC 30 ms
6,940 KB
testcase_26 AC 28 ms
6,944 KB
testcase_27 WA -
testcase_28 AC 76 ms
9,604 KB
testcase_29 AC 76 ms
9,596 KB
testcase_30 AC 76 ms
9,724 KB
testcase_31 AC 75 ms
9,484 KB
testcase_32 AC 75 ms
9,736 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
long long modpow(long long a, long long b){
	long long ans = 1;
	while (b > 0){
		if (b % 2 == 1){
			ans *= a;
			ans %= MOD;
		}
		a *= a;
		a %= MOD;
		b /= 2;
	}
	return ans;
}
long long modinv(long long a){
	return modpow(a, MOD - 2);
}
vector<long long> mf = {1};
vector<long long> mfi = {1};
long long modfact(int n){
	if (mf.size() > n){
		return mf[n];
	} else {
		for (int i = mf.size(); i <= n; i++){
			long long next = mf.back() * i % MOD;
			mf.push_back(next);
			mfi.push_back(modinv(next));
		}
		return mf[n];
	}
}
long long modfactinv(int n){
	if (mfi.size() > n){
		return mfi[n];
	} else {
		return modinv(modfact(n));
	}
}
long long modbinom(int n, int k){
	if (n < 0 || k < 0 || k > n){
		return 0;
	} else {
		return modfact(n) * modfactinv(k) % MOD * modfactinv(n - k) % MOD;
	}
}
int main(){
  int N, K;
  cin >> N >> K;
  long long ans = 0;
  //K+i, K+i-1, ..., K+i-N+1
  //K-N+1~K+N-1
  vector<long long> P(N * 2);
  P[0] = 1;
  for (int i = 0; i < N * 2; i++){
    P[i + 1] = P[i] * (K - N + 1 + i) % MOD;
  }
  for (int i = 0; i <= N - 1; i++){
    //ans += modbinom(N - 1, i) * modbinom(K + i, N) % MOD;
    ans += modbinom(N - 1, i) * (P[i + N] * modinv(P[i]) % MOD * modfactinv(N) % MOD) % MOD;
  }
  ans %= MOD;
  cout << ans << endl;
}
0