結果

問題 No.797 Noelちゃんとピラミッド
ユーザー imulanimulan
提出日時 2019-03-16 00:59:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 626 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-07-01 22:15:27
合計ジャッジ時間 37,450 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 490 ms
18,688 KB
testcase_01 AC 485 ms
18,560 KB
testcase_02 AC 489 ms
18,688 KB
testcase_03 AC 624 ms
29,488 KB
testcase_04 AC 619 ms
29,480 KB
testcase_05 AC 622 ms
29,696 KB
testcase_06 AC 614 ms
29,488 KB
testcase_07 AC 625 ms
29,236 KB
testcase_08 AC 611 ms
29,364 KB
testcase_09 AC 617 ms
29,228 KB
testcase_10 AC 622 ms
29,364 KB
testcase_11 AC 620 ms
29,368 KB
testcase_12 AC 618 ms
29,364 KB
testcase_13 AC 619 ms
29,444 KB
testcase_14 AC 618 ms
29,488 KB
testcase_15 AC 621 ms
29,488 KB
testcase_16 AC 620 ms
29,232 KB
testcase_17 AC 623 ms
29,492 KB
testcase_18 AC 611 ms
29,444 KB
testcase_19 AC 616 ms
29,488 KB
testcase_20 AC 623 ms
29,328 KB
testcase_21 AC 626 ms
29,488 KB
testcase_22 AC 622 ms
29,356 KB
testcase_23 AC 580 ms
26,340 KB
testcase_24 AC 519 ms
20,812 KB
testcase_25 AC 565 ms
25,144 KB
testcase_26 AC 563 ms
24,616 KB
testcase_27 AC 615 ms
29,292 KB
testcase_28 AC 605 ms
28,008 KB
testcase_29 AC 505 ms
19,840 KB
testcase_30 AC 513 ms
20,616 KB
testcase_31 AC 584 ms
26,328 KB
testcase_32 AC 523 ms
21,780 KB
testcase_33 AC 565 ms
24,660 KB
testcase_34 AC 541 ms
22,916 KB
testcase_35 AC 621 ms
29,232 KB
testcase_36 AC 501 ms
19,584 KB
testcase_37 AC 608 ms
28,088 KB
testcase_38 AC 606 ms
28,648 KB
testcase_39 AC 564 ms
24,716 KB
testcase_40 AC 500 ms
19,456 KB
testcase_41 AC 516 ms
20,096 KB
testcase_42 AC 561 ms
24,528 KB
testcase_43 AC 492 ms
18,432 KB
testcase_44 AC 487 ms
18,560 KB
testcase_45 AC 484 ms
18,560 KB
testcase_46 AC 482 ms
18,560 KB
testcase_47 AC 487 ms
18,688 KB
testcase_48 AC 491 ms
18,432 KB
testcase_49 AC 494 ms
18,688 KB
testcase_50 AC 486 ms
18,432 KB
testcase_51 AC 485 ms
18,560 KB
testcase_52 AC 489 ms
18,560 KB
testcase_53 AC 486 ms
18,688 KB
testcase_54 AC 491 ms
18,688 KB
testcase_55 AC 486 ms
18,432 KB
testcase_56 AC 486 ms
18,688 KB
testcase_57 AC 490 ms
18,688 KB
testcase_58 AC 490 ms
18,432 KB
testcase_59 AC 488 ms
18,560 KB
testcase_60 AC 489 ms
18,560 KB
testcase_61 AC 487 ms
18,688 KB
testcase_62 AC 488 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7

N = 100010
f = [1 for i in range(N)]
invf = [1 for i in range(N)]

for i in range(1,N):
    f[i] = (f[i-1]*i)%mod
    invf[i] = pow(f[i], mod-2, mod)

n = int(input())
a = list(map(int, input().split()))

ans = 0
for i in range(n):
    C = f[n-1]
    C *= invf[i]
    C *= invf[n-1-i]
    ans += C*a[i]
    ans %= mod
print(ans)
0