結果

問題 No.797 Noelちゃんとピラミッド
ユーザー pluto77pluto77
提出日時 2019-03-24 12:42:42
言語 Python2
(2.7.18)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 14,996 KB
最終ジャッジ日時 2024-10-01 21:15:34
合計ジャッジ時間 10,275 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,820 KB
testcase_01 AC 10 ms
6,820 KB
testcase_02 AC 11 ms
6,816 KB
testcase_03 AC 231 ms
14,992 KB
testcase_04 AC 227 ms
14,864 KB
testcase_05 AC 224 ms
14,864 KB
testcase_06 AC 224 ms
14,864 KB
testcase_07 AC 225 ms
14,868 KB
testcase_08 AC 225 ms
14,864 KB
testcase_09 AC 221 ms
14,864 KB
testcase_10 AC 225 ms
14,996 KB
testcase_11 AC 224 ms
14,612 KB
testcase_12 AC 228 ms
14,868 KB
testcase_13 AC 228 ms
14,880 KB
testcase_14 AC 227 ms
14,736 KB
testcase_15 AC 227 ms
14,868 KB
testcase_16 AC 231 ms
14,996 KB
testcase_17 AC 231 ms
14,868 KB
testcase_18 AC 229 ms
14,992 KB
testcase_19 AC 228 ms
14,864 KB
testcase_20 AC 226 ms
14,996 KB
testcase_21 AC 226 ms
14,864 KB
testcase_22 AC 227 ms
14,844 KB
testcase_23 AC 167 ms
12,264 KB
testcase_24 AC 59 ms
7,988 KB
testcase_25 AC 144 ms
11,380 KB
testcase_26 AC 132 ms
11,048 KB
testcase_27 AC 221 ms
14,732 KB
testcase_28 AC 200 ms
13,816 KB
testcase_29 AC 39 ms
7,296 KB
testcase_30 AC 57 ms
7,904 KB
testcase_31 AC 167 ms
12,368 KB
testcase_32 AC 76 ms
8,796 KB
testcase_33 AC 137 ms
11,288 KB
testcase_34 AC 98 ms
9,936 KB
testcase_35 AC 221 ms
14,864 KB
testcase_36 AC 33 ms
6,912 KB
testcase_37 AC 196 ms
13,780 KB
testcase_38 AC 206 ms
14,016 KB
testcase_39 AC 132 ms
11,232 KB
testcase_40 AC 32 ms
6,912 KB
testcase_41 AC 46 ms
7,680 KB
testcase_42 AC 130 ms
10,856 KB
testcase_43 AC 11 ms
6,816 KB
testcase_44 AC 11 ms
6,816 KB
testcase_45 AC 10 ms
6,816 KB
testcase_46 AC 11 ms
6,820 KB
testcase_47 AC 11 ms
6,816 KB
testcase_48 AC 11 ms
6,820 KB
testcase_49 AC 11 ms
6,816 KB
testcase_50 AC 11 ms
6,816 KB
testcase_51 AC 11 ms
6,816 KB
testcase_52 AC 11 ms
6,820 KB
testcase_53 AC 11 ms
6,816 KB
testcase_54 AC 11 ms
6,820 KB
testcase_55 AC 11 ms
6,816 KB
testcase_56 AC 11 ms
6,820 KB
testcase_57 AC 11 ms
6,816 KB
testcase_58 AC 11 ms
6,820 KB
testcase_59 AC 11 ms
6,816 KB
testcase_60 AC 11 ms
6,820 KB
testcase_61 AC 11 ms
6,820 KB
testcase_62 AC 10 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki797

mod=10**9+7
n=int(raw_input())
a=map(int,raw_input().split())
res=0
t=1
for i in xrange(n):
 res+=t*a[i]
 res%=mod
 t*=n-i-1
 t%=mod
 t*=pow(i+1,mod-2,mod)
 t%=mod
print res
0