CF1692A.Marathon
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given four distinct integers a , b , c , d .
Timur and three other people are running a marathon. The value a is the distance that Timur has run and b , c , d correspond to the distances the other three participants ran.
Output the number of participants in front of Timur.
输入格式
The first line contains a single integer t ( 1≤t≤104 ) — the number of test cases.
The description of each test case consists of four distinct integers a , b , c , d ( 0≤a,b,c,d≤104 ).
输出格式
For each test case, output a single integer — the number of participants in front of Timur.
输入输出样例
输入#1
4 2 3 4 1 10000 0 1 2 500 600 400 300 0 9999 10000 9998
输出#1
2 0 1 3
说明/提示
For the first test case, there are 2 people in front of Timur, specifically the participants who ran distances of 3 and 4 . The other participant is not in front of Timur because he ran a shorter distance than Timur.
For the second test case, no one is in front of Timur, since he ran a distance of 10000 while all others ran a distance of 0 , 1 , and 2 respectively.
For the third test case, only the second person is in front of Timur, who ran a total distance of 600 while Timur ran a distance of 500 .