結果

問題 No.347 微分と積分
ユーザー ああいいああいい
提出日時 2022-03-17 21:41:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 258 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 53,936 KB
最終ジャッジ日時 2024-10-01 20:40:00
合計ジャッジ時間 2,265 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,764 KB
testcase_01 AC 38 ms
53,804 KB
testcase_02 AC 40 ms
53,124 KB
testcase_03 AC 38 ms
52,744 KB
testcase_04 AC 38 ms
52,700 KB
testcase_05 AC 38 ms
52,780 KB
testcase_06 AC 39 ms
52,212 KB
testcase_07 AC 39 ms
53,432 KB
testcase_08 AC 39 ms
52,812 KB
testcase_09 AC 39 ms
52,716 KB
testcase_10 AC 40 ms
53,240 KB
testcase_11 AC 40 ms
53,072 KB
testcase_12 AC 38 ms
52,608 KB
testcase_13 AC 38 ms
53,196 KB
testcase_14 AC 37 ms
53,400 KB
testcase_15 AC 39 ms
52,348 KB
testcase_16 AC 38 ms
53,936 KB
testcase_17 AC 39 ms
52,800 KB
testcase_18 AC 38 ms
53,856 KB
testcase_19 AC 37 ms
53,288 KB
testcase_20 AC 38 ms
52,628 KB
testcase_21 AC 37 ms
53,612 KB
testcase_22 AC 38 ms
52,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans1 = 0
ans2 = 0
from math import log
for i in a:
    ans1 += i * pow(B,i-1)
    if i != -1:
        ans2 += pow(B,i+1) / (i+1)
    else:
        ans2 += log(B)
print(ans1)
print(ans2)
0