CF1669A.Division?

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Codeforces separates its users into 44 divisions by their rating:

  • For Division 1: 1900rating1900 \leq \mathrm{rating}
  • For Division 2: 1600rating18991600 \leq \mathrm{rating} \leq 1899
  • For Division 3: 1400rating15991400 \leq \mathrm{rating} \leq 1599
  • For Division 4: rating1399\mathrm{rating} \leq 1399

Given a rating\mathrm{rating} , print in which division the rating\mathrm{rating} belongs.

输入格式

The first line of the input contains an integer tt ( 1t1041 \leq t \leq 10^4 ) — the number of testcases.

The description of each test consists of one line containing one integer rating\mathrm{rating} ( 5000rating5000-5000 \leq \mathrm{rating} \leq 5000 ).

输出格式

For each test case, output a single line containing the correct division in the format "Division X", where XX is an integer between 11 and 44 representing the division for the corresponding rating.

输入输出样例

  • 输入#1

    7
    -789
    1299
    1300
    1399
    1400
    1679
    2300

    输出#1

    Division 4
    Division 4
    Division 4
    Division 4
    Division 3
    Division 2
    Division 1

说明/提示

For test cases 141-4 , the corresponding ratings are 789-789 , 12991299 , 13001300 , 13991399 , so all of them are in division 44 .

For the fifth test case, the corresponding rating is 14001400 , so it is in division 33 .

For the sixth test case, the corresponding rating is 16791679 , so it is in division 22 .

For the seventh test case, the corresponding rating is 23002300 , so it is in division 11 .

首页