結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー ゆうPゆうP
提出日時 2024-05-06 23:39:12
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 1,178 bytes
コンパイル時間 12,050 ms
コンパイル使用メモリ 234,352 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 23:39:26
合計ジャッジ時間 12,997 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"math"
	"os"
	"strconv"
	"strings"
)

var sc = bufio.NewScanner(os.Stdin)
var wr = bufio.NewWriter(os.Stdout)

func next() string {
	sc.Scan()
	return sc.Text()
}

func nextInt() int {
	i, _ := strconv.Atoi(next())
	return i
}

func nextFloat() float64 {
	f, _ := strconv.ParseFloat(next(), 64)
	return f
}

func nextInts(n int) []int {
	ret := make([]int, n)
	for i := 0; i < n; i++ {
		ret[i] = nextInt()
	}
	return ret
}

func nextFloats(n int) []float64 {
	ret := make([]float64, n)
	for i := 0; i < n; i++ {
		ret[i] = nextFloat()
	}
	return ret
}

func nextStrings(n int) []string {
	ret := make([]string, n)
	for i := 0; i < n; i++ {
		ret[i] = next()
	}
	return ret
}

func main() {
	sc.Split(bufio.ScanWords)
	var t = nextInt()
	type c struct {
		d int
		a float64
		x []int
	}
	cc := make([]c, t)
	for i := 0; i < t; i++ {
		cc[i].d = nextInt()
		cc[i].a = nextFloat()
		cc[i].x = nextInts(cc[i].d)
	}
	for j := 0; j < t; j++ {
		out := make([]string, cc[j].d)
		for k := 0; k < cc[j].d; k++ {
			out[k] = strconv.FormatFloat(math.Round(float64(cc[j].x[k])/cc[j].a), 'f', -1, 64)
		}
		fmt.Println(strings.Join(out, " "))
	}

}
0