Equalize Prices Again

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

Background

You are both a shop keeper and a shop assistant at a small nearby shop. You have n goods, the i-th good costs ai coins.

You got tired of remembering the price of each product when customers ask for it, thus you decided to simplify your life. More precisely you decided to set the same price for all n goods you have.

However, you don't want to lose any money so you want to choose the price in such a way that the sum of new prices is not less than the sum of the initial prices. It means that if you sell all n goods for the new price, you will receive at least the same (or greater) amount of money as if you sell them for their initial prices.

On the other hand, you don't want to lose customers because of big prices so among all prices you can choose you need to choose the minimum one.

So you need to find the minimum possible equal price of all n goods so if you sell them for this price, you will receive at least the same (or greater) amount of money as if you sell them for their initial prices.

You have to answer q independent queries.

Format

Input

The first line of the input contains one integer q (1≤q≤100) — the number of queries. Then q queries follow.

The first line of the query contains one integer n (1≤n≤100) — the number of goods. The second line of the query contains n integers a1,a2,…,an (1≤ai≤10^7), where ai is the price of the i-th good.

Output

For each query, print the answer for it — the minimum possible equal price of all n goods so if you sell them for this price, you will receive at least the same (or greater) amount of money as if you sell them for their initial prices.

Sample

Input

3
5
1 2 3 4 5
3
1 2 2
4
1 1 1 1

Output

3
2
1

Input Range

30% of input, q≤5, n≤5, ai≤100
70% of input, q≤50, n≤50, ai≤10^4
100% of input, q≤100, n≤100, ai≤10^7

Limitation

time limit per test: 1 second
memory limit per test: 256 megabytes

2019XJU软件实验室ACM组第二次考核

未参加
状态
已结束
规则
OI
题目
3
开始于
2019-10-25 08:00
结束于
2019-10-26 01:00
持续时间
17.0 小时
主持人
参赛人数
6