結果

問題 No.1186 長方形の敷き詰め
ユーザー tokutoku
提出日時 2020-09-05 01:24:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,862 bytes
コンパイル時間 1,359 ms
コンパイル使用メモリ 167,136 KB
実行使用メモリ 27,264 KB
最終ジャッジ日時 2024-05-05 04:01:30
合計ジャッジ時間 3,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
27,136 KB
testcase_01 AC 40 ms
27,136 KB
testcase_02 AC 39 ms
27,136 KB
testcase_03 AC 40 ms
27,136 KB
testcase_04 AC 39 ms
27,136 KB
testcase_05 AC 38 ms
27,264 KB
testcase_06 AC 38 ms
27,136 KB
testcase_07 AC 37 ms
27,136 KB
testcase_08 AC 37 ms
27,136 KB
testcase_09 AC 37 ms
27,136 KB
testcase_10 AC 37 ms
27,136 KB
testcase_11 AC 37 ms
27,136 KB
testcase_12 AC 38 ms
27,136 KB
testcase_13 AC 38 ms
27,136 KB
testcase_14 AC 38 ms
27,136 KB
testcase_15 AC 36 ms
27,136 KB
testcase_16 AC 38 ms
27,136 KB
testcase_17 AC 38 ms
27,008 KB
testcase_18 AC 37 ms
27,136 KB
testcase_19 AC 39 ms
27,136 KB
testcase_20 AC 38 ms
27,136 KB
testcase_21 AC 39 ms
27,136 KB
testcase_22 AC 42 ms
27,136 KB
testcase_23 AC 39 ms
27,136 KB
testcase_24 AC 39 ms
27,136 KB
testcase_25 AC 38 ms
27,136 KB
testcase_26 AC 37 ms
27,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>


using namespace std;
typedef long long ll;

#define REP(i,n) for(int i=0; i<int(n); i++)
#define FOR(i,m,n) for(int i=int(m); i<int(n); i++)
#define ALL(obj) (obj).begin(),(obj).end()
#define VI vector<int>
#define VP vector<pair<int,int>>
#define VPP vector<pair<int,pair<int,int>>>
#define VLL vector<long long>
#define VVI vector<vector<int>>
#define VVLL vector<vector<long long>>
#define VC vector<char>
#define VS vector<string>
#define VVC vector<vector<char>>
#define VB vector<bool>
#define VVB vector<vector<bool>>
#define fore(i,a) for(auto &i:a)
typedef pair <int, int> P;
template<typename T> using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;
template<class T> bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; }
template<class T> bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; }

const int  INF = 1 << 29;
const ll INFL = 1LL << 60;
const ll mod = 998244353;

const int MAX = 1010000;
long long fac[MAX], finv[MAX], inv[MAX];

void COMinit() {
	fac[0] = fac[1] = 1;
	finv[0] = finv[1] = 1;
	inv[1] = 1;
	for (int i = 2; i < MAX; i++) {
		fac[i] = fac[i - 1] * i % mod;
		inv[i] = mod - inv[mod%i] * (mod / i) % mod;
		finv[i] = finv[i - 1] * inv[i] % mod;
	}
}

long long COM(int n, int k) {
	if (n < k) return 0;
	if (n < 0 || k < 0) return 0;
	return fac[n] * (finv[k] * finv[n - k] % mod) % mod;
}

long long modinv(long long a, long long m) {
	long long b = m, u = 1, v = 0;
	while (b) {
		long long t = a / b;
		a -= t * b; swap(a, b);
		u -= t * v; swap(u, v);
	}
	u %= m;
	if (u < 0) u += m;
	return u;
}


int main(){

	COMinit();

	ll n, m;
	cin >> n >> m;
	ll ans = 1;
	if (n == 1) {
		cout << 1 << endl;
		return 0;
	}

	FOR(i, 1, m) {
		ll k = m - n * i;
		if (k < 0)break;
		ans += COM(k + i, i);
		ans %= mod;
	}
	cout << ans << endl;


}
0