您的位置:首页 > 其它

1B. Spreadsheets

2015-11-23 16:25 387 查看
1B. Spreadsheets

time limit per test
10 seconds

memory limit per test
64 megabytes

input
standard input

output
standard output

In the popular spreadsheets systems (for example, in Excel) the following numeration of columns is used. The first column has number A, the second — number B, etc. till column 26 that is marked by Z. Then there are two-letter numbers: column 27 has number AA,
28 — AB, column 52 is marked by AZ. After ZZ there follow three-letter numbers, etc.

The rows are marked by integer numbers starting with 1. The cell name is the concatenation of the column and the row numbers. For example, BC23 is the name for the cell that is in column 55, row 23.

Sometimes another numeration system is used: RXCY, where X and Y are integer numbers, showing the column and the row numbers respectfully. For instance, R23C55 is the cell from the previous example.

Your task is to write a program that reads the given sequence of cell coordinates and produce each item written according to the rules of another numeration system.

Input

The first line of the input contains integer number n (1 ≤ n ≤ 105),
the number of coordinates in the test. Then there follow n lines, each of them contains coordinates. All the coordinates are correct,
there are no cells with the column and/or the row numbers larger than 106.

Output

Write n lines, each line should contain a cell coordinates in the other numeration system.

import string
import re
def RCPattern(s):
rc='R(\d+)C(\d)'
m=re.match(rc,s)
if m is not None:
RCtoAnother(s)
else:
AnothertoRC(s)
def RCtoAnother(s):
TheEnd=s.find('C')
second=s[1:TheEnd]
first=s[TheEnd+1:]
first=string.atoi(first)
result=''
while first>0:
digit=(first-1)%26
result+=chr(ord('A')+digit)
first=(first-digit)//26
result=result[::-1]+second
print result
def AnothertoRC(s):
num=0
for i in range(len(s)):
num=i
if s[i] in string.digits:
break
first=s[:num]
second=s[num:]
result='R'+second+'C'
somelse=0
for i in first:
somelse*=26
somelse+=1+ord(i)-ord('A')
result=result+str(somelse)
print result
if __name__=='__main__':
num=raw_input()
num=string.atoi(num)
InputList=[]
for i in range(num):
quest=raw_input()
InputList.append(quest)
for i in range(len(InputList)):
RCPattern(InputList[i])


Sample test(s)

input
2
R23C55
BC23


output
BC23
R23C55
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: