#include using namespace std; int main() { // 1. 入力情報取得. string S; cin >> S; // 2. 宝の座標を特定. int x = 0; int y = 0; for(int i = 0; i < S.size(); i++){ if(S[i] == 'N') y++; if(S[i] == 'E') x++; if(S[i] == 'W') x--; if(S[i] == 'S') y--; } // 3. 後処理. double ans = sqrt(x * x + y * y); cout << fixed; cout << setprecision(10) << ans << endl; return 0; }