CF1620D.Exact Change

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

One day, early in the morning, you decided to buy yourself a bag of chips in the nearby store. The store has chips of nn different flavors. A bag of the ii -th flavor costs aia_i burles.

The store may run out of some flavors, so you'll decide which one to buy after arriving there. But there are two major flaws in this plan:

  1. you have only coins of 11 , 22 and 33 burles;
  2. since it's morning, the store will ask you to pay in exact change, i. e. if you choose the ii -th flavor, you'll have to pay exactly aia_i burles.

Coins are heavy, so you'd like to take the least possible number of coins in total. That's why you are wondering: what is the minimum total number of coins you should take with you, so you can buy a bag of chips of any flavor in exact change?

输入格式

The first line contains a single integer tt ( 1t10001 \le t \le 1000 ) — the number of test cases.

The first line of each test case contains the single integer nn ( 1n1001 \le n \le 100 ) — the number of flavors in the store.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1091 \le a_i \le 10^9 ) — the cost of one bag of each flavor.

输出格式

For each test case, print one integer — the minimum number of coins you need to buy one bag of any flavor you'll choose in exact change.

输入输出样例

  • 输入#1

    4
    1
    1337
    3
    10 8 10
    5
    1 2 3 4 5
    3
    7 77 777

    输出#1

    446
    4
    3
    260

说明/提示

In the first test case, you should, for example, take with you 445445 coins of value 33 and 11 coin of value 22 . So, 1337=4453+121337 = 445 \cdot 3 + 1 \cdot 2 .

In the second test case, you should, for example, take 22 coins of value 33 and 22 coins of value 22 . So you can pay either exactly 8=23+128 = 2 \cdot 3 + 1 \cdot 2 or 10=23+2210 = 2 \cdot 3 + 2 \cdot 2 .

In the third test case, it's enough to take 11 coin of value 33 and 22 coins of value 11 .

首页