結果

問題 No.797 Noelちゃんとピラミッド
ユーザー nebukuro09nebukuro09
提出日時 2019-03-15 22:20:15
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 1,144 ms
コンパイル使用メモリ 76,684 KB
実行使用メモリ 86,456 KB
最終ジャッジ日時 2024-07-01 21:08:21
合計ジャッジ時間 11,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
75,392 KB
testcase_01 AC 90 ms
75,520 KB
testcase_02 AC 88 ms
75,136 KB
testcase_03 AC 184 ms
86,324 KB
testcase_04 AC 178 ms
86,452 KB
testcase_05 AC 178 ms
86,196 KB
testcase_06 AC 180 ms
86,068 KB
testcase_07 AC 178 ms
86,456 KB
testcase_08 AC 179 ms
86,456 KB
testcase_09 AC 178 ms
86,444 KB
testcase_10 AC 179 ms
86,328 KB
testcase_11 AC 181 ms
86,072 KB
testcase_12 AC 177 ms
86,452 KB
testcase_13 AC 178 ms
86,072 KB
testcase_14 AC 178 ms
85,936 KB
testcase_15 AC 177 ms
86,060 KB
testcase_16 AC 178 ms
86,196 KB
testcase_17 AC 180 ms
85,940 KB
testcase_18 AC 179 ms
86,060 KB
testcase_19 AC 178 ms
85,940 KB
testcase_20 AC 178 ms
85,948 KB
testcase_21 AC 177 ms
86,196 KB
testcase_22 AC 179 ms
85,940 KB
testcase_23 AC 155 ms
83,568 KB
testcase_24 AC 114 ms
79,872 KB
testcase_25 AC 151 ms
83,324 KB
testcase_26 AC 144 ms
82,292 KB
testcase_27 AC 176 ms
86,080 KB
testcase_28 AC 173 ms
85,456 KB
testcase_29 AC 106 ms
78,720 KB
testcase_30 AC 114 ms
79,616 KB
testcase_31 AC 155 ms
83,436 KB
testcase_32 AC 120 ms
80,000 KB
testcase_33 AC 146 ms
82,936 KB
testcase_34 AC 131 ms
81,152 KB
testcase_35 AC 179 ms
86,096 KB
testcase_36 AC 105 ms
77,952 KB
testcase_37 AC 168 ms
85,200 KB
testcase_38 AC 173 ms
86,252 KB
testcase_39 AC 146 ms
82,804 KB
testcase_40 AC 107 ms
78,080 KB
testcase_41 AC 110 ms
78,848 KB
testcase_42 AC 143 ms
82,808 KB
testcase_43 AC 89 ms
75,648 KB
testcase_44 AC 89 ms
75,648 KB
testcase_45 AC 88 ms
75,520 KB
testcase_46 AC 89 ms
75,264 KB
testcase_47 AC 90 ms
75,264 KB
testcase_48 AC 89 ms
75,264 KB
testcase_49 AC 89 ms
75,648 KB
testcase_50 AC 89 ms
75,392 KB
testcase_51 AC 89 ms
75,392 KB
testcase_52 AC 89 ms
75,136 KB
testcase_53 AC 88 ms
75,520 KB
testcase_54 AC 88 ms
75,520 KB
testcase_55 AC 88 ms
75,648 KB
testcase_56 AC 90 ms
75,264 KB
testcase_57 AC 90 ms
75,264 KB
testcase_58 AC 90 ms
75,520 KB
testcase_59 AC 89 ms
75,648 KB
testcase_60 AC 88 ms
75,264 KB
testcase_61 AC 88 ms
75,776 KB
testcase_62 AC 88 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
A = map(int, raw_input().split())

MOD = 10 ** 9 + 7

ans = 0
C = 1

for i in xrange(N):
    ans += C * A[i]
    ans %= MOD
    C *= N - i - 1
    C %= MOD
    C *= pow(i + 1, MOD - 2, MOD)
    C %= MOD

print ans
0