結果

問題 No.347 微分と積分
ユーザー tsuchinagatsuchinaga
提出日時 2019-03-28 11:45:07
言語 Go
(1.23.4)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 499 bytes
コンパイル時間 16,758 ms
コンパイル使用メモリ 220,924 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 16:08:03
合計ジャッジ時間 17,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
)

func main() {
	var n, x int
	_, _ = fmt.Scan(&n, &x)

	f := 0.0
	nums := make([]float64, n)
	for i := range nums {
		_, _ = fmt.Scan(&f)
		nums[i] = f
	}

	// 微分
	a := 0.0
	for _, n := range nums {
		a += n * math.Pow(float64(x), n-1)
	}
	fmt.Printf("%.5f\n", a)

	// 積分
	b := 0.0
	for _, n := range nums {
		if n == -1 {
			b += math.Log(math.Abs(float64(x)))
		} else {
			b += math.Pow(float64(x), n+1) / (n + 1)
		}
	}
	fmt.Printf("%.5f\n", b)
}
0