結果

問題 No.1629 Sorting Integers (SUM of M)
ユーザー PSL24251284PSL24251284
提出日時 2021-07-30 23:37:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 72,448 KB
最終ジャッジ日時 2024-09-16 03:49:04
合計ジャッジ時間 1,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 50 ms
64,256 KB
testcase_05 AC 41 ms
58,752 KB
testcase_06 AC 41 ms
59,264 KB
testcase_07 AC 54 ms
66,816 KB
testcase_08 AC 51 ms
64,000 KB
testcase_09 AC 52 ms
65,152 KB
testcase_10 AC 46 ms
64,384 KB
testcase_11 AC 49 ms
62,208 KB
testcase_12 AC 53 ms
64,768 KB
testcase_13 AC 48 ms
64,896 KB
testcase_14 AC 46 ms
62,464 KB
testcase_15 AC 53 ms
65,664 KB
testcase_16 AC 53 ms
65,024 KB
testcase_17 AC 58 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7
N = int(input())
c = [0] + list(map(int,input().split()))
P = [1]
for i in range(1,N+1):
    P.append((P[-1]*i)%mod)
#print(P)
X = P[N-1]
for i in range(10):
    X *= pow(P[c[i]],mod-2,mod)
    X %= mod

X *= pow(10,N,mod)-1
X %= mod
X *= pow(9,mod-2,mod)
X %= mod

ans = 0
for i in range(10):
    ans += i*c[i]
    ans %= mod

ans *= X
ans %= mod
print(ans)
0