結果

問題 No.797 Noelちゃんとピラミッド
ユーザー matriematrie
提出日時 2021-01-09 14:13:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 160 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,048 KB
最終ジャッジ日時 2024-11-17 17:51:25
合計ジャッジ時間 123,319 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,000 KB
testcase_01 AC 29 ms
32,184 KB
testcase_02 AC 29 ms
15,872 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 31 ms
10,880 KB
testcase_45 AC 30 ms
10,752 KB
testcase_46 AC 30 ms
10,624 KB
testcase_47 AC 28 ms
10,880 KB
testcase_48 AC 27 ms
10,752 KB
testcase_49 AC 28 ms
10,752 KB
testcase_50 AC 31 ms
10,624 KB
testcase_51 AC 31 ms
10,752 KB
testcase_52 AC 31 ms
10,496 KB
testcase_53 AC 31 ms
10,752 KB
testcase_54 AC 29 ms
10,496 KB
testcase_55 AC 29 ms
10,624 KB
testcase_56 AC 29 ms
10,752 KB
testcase_57 AC 31 ms
10,880 KB
testcase_58 AC 31 ms
10,752 KB
testcase_59 AC 31 ms
10,624 KB
testcase_60 AC 30 ms
10,752 KB
testcase_61 AC 30 ms
10,496 KB
testcase_62 AC 29 ms
33,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import factorial as f
n=int(input())
b=10**9+7
L=list(map(int,input().split()))
a=0
for i in range(n):
	a+=L[i]*f(n-1)//(f(n-1-i)*f(i))
	a%=b
print(a)
0