結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | asaringo |
提出日時 | 2021-07-30 22:16:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,060 bytes |
コンパイル時間 | 1,566 ms |
コンパイル使用メモリ | 167,628 KB |
実行使用メモリ | 6,784 KB |
最終ジャッジ日時 | 2024-09-16 00:42:36 |
合計ジャッジ時間 | 4,127 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
6,784 KB |
testcase_01 | AC | 38 ms
6,656 KB |
testcase_02 | AC | 39 ms
6,656 KB |
testcase_03 | AC | 39 ms
6,784 KB |
testcase_04 | AC | 50 ms
6,656 KB |
testcase_05 | AC | 41 ms
6,528 KB |
testcase_06 | AC | 42 ms
6,528 KB |
testcase_07 | AC | 102 ms
6,656 KB |
testcase_08 | AC | 74 ms
6,656 KB |
testcase_09 | AC | 107 ms
6,656 KB |
testcase_10 | AC | 75 ms
6,656 KB |
testcase_11 | AC | 69 ms
6,656 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std ; typedef long long ll ; typedef pair<int,int> P ; #define rep(i,n) for(int i = 0 ; i < n ; i++) #define rrep(i,a,b) for(int i = a ; i < b ; i++) #define chmin(a,b) a = min(a,b) ; const int mod = 1000000007 ; ll n , k ; vector<int> digit ; ll fac[202020] ; ll inv[202020] ; ll C[10] ; ll powmod(ll x , ll n){ ll res = 1 ; while(n > 0){ if(n & 1) (res *= x) %= mod ; (x *= x) %= mod ; n >>= 1 ; } return res ; } void init(){ fac[0] = fac[1] = 1 ; rrep(i,2,202020) fac[i] = fac[i-1] * i % mod ; inv[0] = inv[1] = 1 ; rrep(i,2,202020) inv[i] = inv[i-1] * powmod(i,mod-2) % mod ; } int main(){ init() ; cin >> n ; rep(i,9) cin >> C[i] ; ll res = 0 ; rep(i,n){ rep(j,9){ if(C[j] == 0) continue ; ll val = fac[n-1] * inv[C[j] - 1] % mod * (j + 1) % mod * powmod(10,i) ; rep(k,9) if(j != k) (val *= inv[C[k]]) %= mod ; (res += val) %= mod ; } } cout << res << endl ; }