CF1692A.Marathon

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given four distinct integers aa , bb , cc , dd .

Timur and three other people are running a marathon. The value aa is the distance that Timur has run and bb , cc , dd 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 tt ( 1t1041 \leq t \leq 10^4 ) — the number of test cases.

The description of each test case consists of four distinct integers aa , bb , cc , dd ( 0a,b,c,d1040 \leq a, b, c, d \leq 10^4 ).

输出格式

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 22 people in front of Timur, specifically the participants who ran distances of 33 and 44 . 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 1000010000 while all others ran a distance of 00 , 11 , and 22 respectively.

For the third test case, only the second person is in front of Timur, who ran a total distance of 600600 while Timur ran a distance of 500500 .

首页