比赛 |
东方幻想乡 S1 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
东风谷早苗 |
最终得分 |
100 |
用户昵称 |
王者自由 |
运行时间 |
0.006 s |
代码语言 |
C++ |
内存使用 |
0.29 MiB |
提交时间 |
2012-08-07 18:55:47 |
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 5000 + 10;
char s[N]; int X['Z'], Y['Z'];
int l, t, x, y, u, v;
int main() {
freopen("android.in", "r", stdin);
freopen("android.out", "w", stdout);
scanf("%s\n", s);
scanf("%d", &t);
l = strlen(s);
X['E'] = 1, X['W'] = -1;
Y['N'] = 1, Y['S'] = -1;
for(int i=0; i<l; i++) {
u += X[s[i]], v += Y[s[i]];
if(i < t%l)
x += X[s[i]], y += Y[s[i]];
}
x += t/l * u, y += t/l * v;
printf("%d %d\n", x, y);
return 0;
}