CF725B.Food on the Plane

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A new airplane SuperPuperJet has an infinite number of rows, numbered with positive integers starting with 11 from cockpit to tail. There are six seats in each row, denoted with letters from 'a' to 'f'. Seats 'a', 'b' and 'c' are located to the left of an aisle (if one looks in the direction of the cockpit), while seats 'd', 'e' and 'f' are located to the right. Seats 'a' and 'f' are located near the windows, while seats 'c' and 'd' are located near the aisle.

It's lunch time and two flight attendants have just started to serve food. They move from the first rows to the tail, always maintaining a distance of two rows from each other because of the food trolley. Thus, at the beginning the first attendant serves row 11 while the second attendant serves row 33 . When both rows are done they move one row forward: the first attendant serves row 22 while the second attendant serves row 44 . Then they move three rows forward and the first attendant serves row 55 while the second attendant serves row 77 . Then they move one row forward again and so on.

Flight attendants work with the same speed: it takes exactly 11 second to serve one passenger and 11 second to move one row forward. Each attendant first serves the passengers on the seats to the right of the aisle and then serves passengers on the seats to the left of the aisle (if one looks in the direction of the cockpit). Moreover, they always serve passengers in order from the window to the aisle. Thus, the first passenger to receive food in each row is located in seat 'f', and the last one — in seat 'c'. Assume that all seats are occupied.

Vasya has seat ss in row nn and wants to know how many seconds will pass before he gets his lunch.

输入格式

The only line of input contains a description of Vasya's seat in the format nsns , where nn ( 1<=n<=10181<=n<=10^{18} ) is the index of the row and ss is the seat in this row, denoted as letter from 'a' to 'f'. The index of the row and the seat are not separated by a space.

输出格式

Print one integer — the number of seconds Vasya has to wait until he gets his lunch.

输入输出样例

  • 输入#1

    1f
    

    输出#1

    1
    
  • 输入#2

    2d
    

    输出#2

    10
    
  • 输入#3

    4a
    

    输出#3

    11
    
  • 输入#4

    5e
    

    输出#4

    18
    

说明/提示

In the first sample, the first flight attendant serves Vasya first, so Vasya gets his lunch after 11 second.

In the second sample, the flight attendants will spend 66 seconds to serve everyone in the rows 11 and 33 , then they will move one row forward in 11 second. As they first serve seats located to the right of the aisle in order from window to aisle, Vasya has to wait 33 more seconds. The total is 6+1+3=106+1+3=10 .

首页