0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 12:25:28 +00:00
OI-codes/problem/P1724/P1724.cpp

33 lines
682 B
C++
Raw Normal View History

2020-10-04 08:09:06 +00:00
// R39244100
#include <bits/stdc++.h>
using namespace std;
2020-10-04 08:09:06 +00:00
int x = 0, y = 0, t = 0;
string s;
int main() {
cin >> s >> t;
2020-10-04 08:09:06 +00:00
for (int i = 0; i < s.size(); i++) {
switch (s[i]) {
case 'E': x++; break;
case 'S': y--; break;
case 'W': x--; break;
case 'N': y++; break;
}
2020-10-04 08:09:06 +00:00
}
x *= (int)(t / s.size());
y *= (int)(t / s.size());
for (int i = 0; i < t % s.size(); i++) {
switch (s[i]) {
case 'E': x++; break;
case 'S': y--; break;
case 'W': x--; break;
case 'N': y++; break;
}
}
cout << x << ' ' << y << endl;
return 0;
}