记录编号 |
348498 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
[東方S1] 东风谷早苗 |
最终得分 |
100 |
用户昵称 |
ZWOI_你猜啊 |
是否通过 |
通过 |
代码语言 |
C |
运行时间 |
0.012 s |
提交时间 |
2016-11-14 11:55:51 |
内存使用 |
0.28 MiB |
显示代码纯文本
#include<stdio.h>
#include<string.h>
long T,x,y;
long m,n;
char str[5000];
int main(){
int i,len;
freopen("android.in","r",stdin);
freopen("android.out","w",stdout);
memset(str,0,sizeof(str));
scanf("%s",str);
scanf("%ld",&T);
len=strlen(str);
m=T/len; n=T%len;
x=0; y=0;
for(i=0;i<len;i++){
if(str[i]=='E') x++;
if(str[i]=='S') y--;
if(str[i]=='W') x--;
if(str[i]=='N') y++;
}
x*=m; y*=m;
for(i=0;i<n;i++){
if(str[i]=='E') x++;
if(str[i]=='S') y--;
if(str[i]=='W') x--;
if(str[i]=='N') y++;
}
printf("%ld %ld",x,y);
return 0;
}