309073: CF1620D. Exact Change
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Exact Change
题意翻译
- 有 $n$ 个物品,第 $i$ 个物品价格为 $a_i$。 - 有三种货币,面值分别为 $1,2,3$。 - 求最小需要多少张货币,才能表出所有的 $a_i$。 - 多组测试数据。 - $1 \leq t \leq 1000,1 \leq n \leq 100,1 \leq a_i \leq 10^9$。题目描述
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 $ a_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 $ 1 $ , $ 2 $ and $ 3 $ burles; 2. 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 $ a_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 $ t $ ( $ 1 \le t \le 1000 $ ) — the number of test cases. The first line of each test case contains the single integer $ n $ ( $ 1 \le n \le 100 $ ) — the number of flavors in the store. The second line of each test case contains $ n $ integers $ a_1, a_2, \dots, a_n $ ( $ 1 \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