結果
問題 | No.665 Bernoulli Bernoulli |
ユーザー | snrnsidy |
提出日時 | 2021-10-22 20:23:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 821 bytes |
コンパイル時間 | 291 ms |
コンパイル使用メモリ | 45,312 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-23 02:31:56 |
合計ジャッジ時間 | 10,195 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 590 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <cstdio> #include <algorithm> using namespace std; int const MOD = 1000000007; int const K_MAX = 10000; int mul_inv(int a, int b) { int b0 = b, t, q; int x0 = 0, x1 = 1; if (b == 1) return 1; while (a > 1) { q = a / b; t = b, b = a % b, a = t; t = x0, x0 = x1 - q * x0, x1 = t; } if (x1 < 0) x1 += b0; return x1; } int main() { long long int N, K; int _aa[2][K_MAX], *alt1 = _aa[0], *alt2 = _aa[1]; scanf("%lld %lld", &N, &K); alt1[0] = 1LL * N*(N+1)/2 % MOD; for(int i=1; i+1<=K; ++i) { alt2[0] = N; for(int j=1; j<=i+1; ++j) { alt2[0] = 1LL * alt2[0]*(N+j) % MOD; } alt2[0] = 1LL * alt2[0]*mul_inv(i+2, MOD) % MOD; for(int j=1; j<i+1; ++j) { alt2[j] = (alt2[j-1] - 1LL * alt1[j-1]*(i+1-j) % MOD + MOD) % MOD; } swap(alt1, alt2); } printf("%lld", alt1[K-1]); return 0; }