結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | sk461 |
提出日時 | 2021-07-30 22:24:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,752 bytes |
コンパイル時間 | 1,016 ms |
コンパイル使用メモリ | 109,192 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-09-16 00:54:30 |
合計ジャッジ時間 | 1,877 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
7,808 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
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 | - |
ソースコード
// #define _GLIBCXX_DEBUG #include <algorithm> #include <cmath> #include <complex> #include <cstdlib> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <vector> using namespace std; using ll = long long; using ld = long double; using P = pair<int, int>; // #include <atcoder> // using namespace atcoder; // using mint = modint1000000007; // #include <boost/multiprecision/cpp_dec_float.hpp> // #include <boost/multiprecision/cpp_int.hpp> // namespace mp = boost::multiprecision; // using Bint = mp::cpp_int; // using Bdouble = mp::number<mp::cpp_dec_float<32>>; const int MOD = 1000000007; vector<ll> fac(200200), finv(200200), inv(200200); bool is_preprocessing_already_done = 0; void preprocessing() { fac[0] = fac[1] = 1; finv[0] = finv[1] = 1; inv[1] = 1; for (int i = 2; i < 200200; 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; } } ll comb(int n, int k) { if (!is_preprocessing_already_done) { preprocessing(); is_preprocessing_already_done = 1; } if (n < k) return 0; if (n < 0 || k < 0) return 0; return fac[n] * (finv[k] * finv[n - k] % MOD) % MOD; } int main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); int n; cin >> n; long ans = 0; for (int i = 0; i < 9; i++) { long c; cin >> c; long cnt = 1; for (int j = 0; j < n - 1; j++) { cnt *= 10; cnt += 1; } ans += cnt * (comb(n, c) - comb(n - 1, n - c)); ans %= MOD; } cout << ans << endl; return 0; }