6 R 1 P 2 G 3 r 1 p 2 g 3
19 18 10 -17 -14 -4
遇到的问题和思路:
我还以为和杭电的2054的题目一样是大数据呢,没想到是水题。。。不过个人感觉杭电的2054的题目有点问题啊,看到discuss里面以后,我用两个人AC的代码测试了两个不同的数据,一个输出是YES 一个是NO,但是竟然都AC了。
给出代码:
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<cstring>
#define inf 1e-12
using namespace std;
int f[30];
char a;
int b;
int main(){
int t,indexx;
for(int i = 0;i < 29;i++)f[i] = i;
scanf("%d",&t);
getchar();
while(t--){
scanf("%c%d",&a,&b);
getchar();
if(a>='a'&&a<='z'){
indexx = a - 'a' + 1;
indexx*=-1;
}
else {
indexx = a - 'A' + 1;
}
printf("%d\n",indexx + b);
}
return 0;
}