結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | momoyuu |
提出日時 | 2024-10-06 19:28:59 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 960 bytes |
コンパイル時間 | 1,132 ms |
コンパイル使用メモリ | 105,464 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-06 19:29:17 |
合計ジャッジ時間 | 17,163 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 26 ms
6,820 KB |
testcase_05 | AC | 8 ms
6,820 KB |
testcase_06 | AC | 9 ms
6,820 KB |
testcase_07 | AC | 509 ms
6,820 KB |
testcase_08 | AC | 222 ms
6,820 KB |
testcase_09 | AC | 700 ms
6,816 KB |
testcase_10 | AC | 224 ms
6,816 KB |
testcase_11 | AC | 264 ms
6,816 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 1,505 ms
6,816 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; using ll = long long; #include<atcoder/modint> using mint = atcoder::modint1000000007; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin>>n; vector<int> c(10,0); for(int i = 1;i<=9;i++) cin>>c[i]; mint ans = 0; vector<mint> p(n+1,0); p[0] = 1; for(int i = 1;i<=n;i++) p[i] = p[i-1] * 10; vector<mint> fac(n+1,1); for(int i = 1;i<=n;i++) fac[i] = fac[i-1] * i; for(int i = 1;i<=9;i++){ if(c[i]==0) continue; c[i]--; for(int j = 0;j<n;j++){ mint tmp = p[j] * i; int res = n - 1; for(int k = 1;k<=9;k++){ if(c[k]==0) continue; tmp *= fac[res] * fac[res-c[k]].inv() * fac[c[k]].inv(); res -= c[k]; } ans += tmp; } c[i]++; } cout<<ans.val()<<endl; }