結果
問題 | No.1629 Sorting Integers (SUM of M) |
ユーザー | publfl |
提出日時 | 2021-07-30 20:39:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 955 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 33,280 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-09-15 22:29:08 |
合計ジャッジ時間 | 3,656 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include <stdio.h> #define MOD 1000000007 long long int fact[110]; long long int power(long long int a, long long int b) { long long int ans = 1; long long int k = a; while(b) { if(b%2==1) ans *= k, ans %= MOD; b/=2; k *= k, k %= MOD; } return ans; } long long int inv(long long int k) { return power(k,MOD-2); } int x[110]; int main() { fact[0] = 1; for(int i=1;i<=100;i++) fact[i] = (i*fact[i-1])%MOD; int a; scanf("%d",&a); for(int i=1;i<=9;i++) scanf("%d",&x[i]); long long int t = 0; for(int i=0;i<a;i++) { long long int S = 1; for(int j=1;j<=i;j++) S *= 10, S %= MOD; t += S, t %= MOD; } long long int ans = 0; for(int i=1;i<=9;i++) { if(x[i]==0) continue; long long int s = i*t; s %= MOD; long long int sum = fact[a-1]; for(int j=1;j<=9;j++) { if(i==j) sum *= inv(fact[x[j]-1]), sum %= MOD; else sum *= inv(fact[x[j]]), sum %= MOD; } ans += (sum*s), ans %= MOD; } printf("%lld",ans); }