记录编号 |
190214 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
[東方S1] 东风谷早苗 |
最终得分 |
100 |
用户昵称 |
Dissolute丶Tokgo |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.020 s |
提交时间 |
2015-10-02 20:00:51 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<algorithm>
#include<vector>
#include<stack>
using namespace std;
inline int qread(){
int ret=0;char ch=getchar();
while(ch<'0'||ch>'9') ch=getchar();
while(ch>='0'&&ch<='9') ret=ret*10+ch-'0',ch=getchar();
return ret;
}
int main(){
freopen("android.in","r",stdin);
freopen("android.out","w",stdout);
string s;
cin>>s;
int x=0,y=0,len=s.size();
for(int i=0;i<len;++i){
if(s[i]=='N') y++;
if(s[i]=='S') y--;
if(s[i]=='W') x--;
if(s[i]=='E') x++;
}
int T=qread();
int temp=T/len;
x*=temp,y*=temp;
T=T-temp*len;
for(int i=0;i<T;++i){
if(s[i]=='N') y++;
if(s[i]=='S') y--;
if(s[i]=='W') x--;
if(s[i]=='E') x++;
}
printf("%d %d",x,y);
// while(1);
}