結果

問題 No.347 微分と積分
ユーザー NagisaNagisa
提出日時 2016-02-27 03:33:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-24 11:01:05
合計ジャッジ時間 1,852 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())
B = int(input())
a = list(map(float, input().split()))


def bibun(p,r):
    return p*(r**(p-1))

def sekibun(p,r):
    if p == -1:
        return math.log(r)
    else:
        return (r**(p+1))/(p+1)

ans1 = 0
ans2 = 0
for q in a:
    ans1 += bibun(q,B)
    ans2 += sekibun(q,B)

print(ans1)
print(ans2)
0