結果
問題 | No.1186 長方形の敷き詰め |
ユーザー | sawfish |
提出日時 | 2022-10-17 02:05:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 978 bytes |
コンパイル時間 | 695 ms |
コンパイル使用メモリ | 64,896 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-27 19:14:10 |
合計ジャッジ時間 | 4,532 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#include <iostream> using namespace std; using LL = long long; constexpr int INF = 1 << 30; constexpr LL INFL = 1L << 62; constexpr int MOD = 998244353; LL ncr(LL, LL, LL); LL pow(LL, LL, LL); int main() { int N, M; cin >> N >> M; if (N == 1) { cout << 1 << endl; exit(0); } LL ans = 0; for (int i = 0; i <= M / N; i++) { // cout << M - (N * i) + i << " " << M - (N * i) << endl; ans = (ans + ncr(M - (N * i) + i, M - (N * i), MOD)) % MOD; } cout << ans << endl; } LL ncr(LL n, LL r, LL m) { if (r == 0 || r == n) return 1L % m; LL a = 1, b = 1; for (LL i = n; i >= r + 1; i--) a = (a * i) % m; for (LL i = n - r; i >= 2; i--) b = (b * i) % m; return (a * pow(b, m - 2, m)) % m; } LL pow(LL a, LL b, LL m) { if (b == 0) return 1L % m; if (b == 1) return a % m; LL ret = pow(a, b / 2, m); ret = (ret * ret) % m; if (b % 2 == 1) ret = (ret * a) % m; return ret; }