CF1191A.Tokitsukaze and Enhancement

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Tokitsukaze is one of the characters in the game "Kantai Collection". In this game, every character has a common attribute — health points, shortened to HP.

In general, different values of HP are grouped into 44 categories:

  • Category AA if HP is in the form of (4n+1)(4 n + 1) , that is, when divided by 44 , the remainder is 11 ;
  • Category BB if HP is in the form of (4n+3)(4 n + 3) , that is, when divided by 44 , the remainder is 33 ;
  • Category CC if HP is in the form of (4n+2)(4 n + 2) , that is, when divided by 44 , the remainder is 22 ;
  • Category DD if HP is in the form of 4n4 n , that is, when divided by 44 , the remainder is 00 .

The above-mentioned nn can be any integer.

These 44 categories ordered from highest to lowest as A>B>C>DA > B > C > D , which means category AA is the highest and category DD is the lowest.

While playing the game, players can increase the HP of the character. Now, Tokitsukaze wants you to increase her HP by at most 22 (that is, either by 00 , 11 or 22 ). How much should she increase her HP so that it has the highest possible category?

输入格式

The only line contains a single integer xx ( 30x10030 \leq x \leq 100 ) — the value Tokitsukaze's HP currently.

输出格式

Print an integer aa ( 0a20 \leq a \leq 2 ) and an uppercase letter bb ( b{A,B,C,D}b \in \lbrace A, B, C, D \rbrace ), representing that the best way is to increase her HP by aa , and then the category becomes bb .

Note that the output characters are case-sensitive.

输入输出样例

  • 输入#1

    33
    

    输出#1

    0 A
    
  • 输入#2

    98
    

    输出#2

    1 B
    

说明/提示

For the first example, the category of Tokitsukaze's HP is already AA , so you don't need to enhance her ability.

For the second example:

  • If you don't increase her HP, its value is still 9898 , which equals to (4×24+2)(4 \times 24 + 2) , and its category is CC .
  • If you increase her HP by 11 , its value becomes 9999 , which equals to (4×24+3)(4 \times 24 + 3) , and its category becomes BB .
  • If you increase her HP by 22 , its value becomes 100100 , which equals to (4×25)(4 \times 25) , and its category becomes DD .

Therefore, the best way is to increase her HP by 11 so that the category of her HP becomes BB .

首页