結果
問題 | No.347 微分と積分 |
ユーザー | nanae |
提出日時 | 2017-02-02 17:42:23 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 36 ms / 5,000 ms |
コード長 | 589 bytes |
コンパイル時間 | 290 ms |
コンパイル使用メモリ | 12,288 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-12-24 03:54:50 |
合計ジャッジ時間 | 2,131 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
import sys from math import log def debug(x, table): for name, val in table.items(): if x is val: print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr) return None def solve(): N = int(input()) B = int(input()) a = [float(i) for i in input().split()] dif = sum(a_i * B**(a_i - 1) for a_i in a) integral = 0 for a_i in a: if a_i != -1: integral += B**(a_i + 1) / (a_i + 1) else: integral += log(B) print(dif) print(integral) pass if __name__ == '__main__': solve()