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 n different flavors. A bag of the i -th flavor costs ai 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:
- you have only coins of 1 , 2 and 3 burles;
- since it's morning, the store will ask you to pay in exact change, i. e. if you choose the i -th flavor, you'll have to pay exactly ai 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 t ( 1≤t≤1000 ) — the number of test cases.
The first line of each test case contains the single integer n ( 1≤n≤100 ) — the number of flavors in the store.
The second line of each test case contains n integers a1,a2,…,an ( 1≤ai≤109 ) — 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 445 coins of value 3 and 1 coin of value 2 . So, 1337=445⋅3+1⋅2 .
In the second test case, you should, for example, take 2 coins of value 3 and 2 coins of value 2 . So you can pay either exactly 8=2⋅3+1⋅2 or 10=2⋅3+2⋅2 .
In the third test case, it's enough to take 1 coin of value 3 and 2 coins of value 1 .