結果

問題 No.3072 Sum of sqrt(x)
ユーザー Lisp_CoderLisp_Coder
提出日時 2022-12-24 17:41:29
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 539 bytes
コンパイル時間 15,511 ms
コンパイル使用メモリ 221,592 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-11-18 05:26:16
合計ジャッジ時間 95,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,624 KB
testcase_01 AC 3 ms
24,704 KB
testcase_02 AC 2 ms
10,624 KB
testcase_03 AC 3 ms
13,764 KB
testcase_04 AC 3 ms
10,624 KB
testcase_05 AC 2 ms
24,192 KB
testcase_06 AC 2 ms
13,760 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
)

func main() {
	// Read in the sequence length N
	var N int
	fmt.Scanf("%d", &N)

	// Read in the sequence
	sequence := make([]int, N)
	for i := 0; i < N; i++ {
		fmt.Scanf("%d", &sequence[i])
	}

	// Initialize a variable to store the sum of sqrt(xi) for i = 0 to i = k
	var sum float64

	// Iterate over the sequence
	for k := 0; k < N; k++ {
		// Add the square root of the current element to the sum
		sum += math.Sqrt(float64(sequence[k]))

		// Print the sum
		fmt.Printf("%.16f\n", sum)
	}
}
0