結果

問題 No.1081 和の和
ユーザー rythem00359rythem00359
提出日時 2020-08-13 17:23:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,094 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 118,060 KB
最終ジャッジ日時 2024-10-09 19:21:28
合計ジャッジ時間 15,048 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,094 ms
57,372 KB
testcase_01 AC 972 ms
57,620 KB
testcase_02 AC 981 ms
57,760 KB
testcase_03 AC 969 ms
57,504 KB
testcase_04 AC 967 ms
57,752 KB
testcase_05 AC 967 ms
57,760 KB
testcase_06 AC 976 ms
57,248 KB
testcase_07 AC 980 ms
57,244 KB
testcase_08 AC 986 ms
57,244 KB
testcase_09 AC 974 ms
57,112 KB
testcase_10 AC 985 ms
118,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import comb
N=int(input())
a=[*map(lambda args:args[1]*comb(N-1,args[0],exact=True),enumerate([*map(int,input().split())]))]
print(int(sum(a)%1000000007))
0