結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | ぷら |
提出日時 | 2021-07-30 20:43:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 1,208 bytes |
コンパイル時間 | 2,214 ms |
コンパイル使用メモリ | 202,380 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-09-15 22:36:24 |
合計ジャッジ時間 | 3,125 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
8,064 KB |
testcase_01 | AC | 8 ms
8,192 KB |
testcase_02 | AC | 8 ms
8,064 KB |
testcase_03 | AC | 7 ms
8,064 KB |
testcase_04 | AC | 14 ms
8,064 KB |
testcase_05 | AC | 9 ms
8,064 KB |
testcase_06 | AC | 9 ms
8,192 KB |
testcase_07 | AC | 16 ms
8,192 KB |
testcase_08 | AC | 14 ms
8,064 KB |
testcase_09 | AC | 15 ms
8,064 KB |
testcase_10 | AC | 14 ms
8,192 KB |
testcase_11 | AC | 12 ms
8,192 KB |
testcase_12 | AC | 15 ms
8,064 KB |
testcase_13 | AC | 15 ms
8,192 KB |
testcase_14 | AC | 13 ms
8,064 KB |
testcase_15 | AC | 15 ms
8,192 KB |
testcase_16 | AC | 15 ms
8,064 KB |
testcase_17 | AC | 22 ms
8,192 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; constexpr int mod = 1000000007; long long fac[200005], finv[200005], inv[200005]; void COMinit() { fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1; for (int i = 2; i < 200005; 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; } int main() { COMinit(); int N; cin >> N; vector<int>tmp(9); long long ans = 0; for(int i = 0; i < 9; i++) { cin >> tmp[i]; } for(int i = 0; i < 9; i++) { long long tmp2 = COM(N-1,tmp[i]-1); long long sum = N-tmp[i]; for(int j = 0; j < 9; j++) { if(i != j) { tmp2 *= COM(sum,tmp[j]); tmp2 %= mod; sum -= tmp[j]; } } sum = 1; for(int j = 0; j < N; j++) { ans += sum*tmp2%mod*(i+1)%mod; ans %= mod; sum *= 10; sum %= mod; } } cout << ans << endl; }