#include using namespace std; typedef long long ll; typedef long double ld; #define REP(i, n) for (int i = 0; i < (n); ++i) #define REPR(i, n) for (int i = n - 1; i >= 0; --i) #define FOR(i, m, n) for (int i = m; i < n; ++i) #define FORR(i, m, n) for (int i = m; i >= n; --i) #define ALL(v) (v).begin(),(v).end() templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (b> s; int n=s.size(); int x=0,y=0; REP(i,n){ if(s[i]=='E') x++; if(s[i]=='W') x--; if(s[i]=='N') y++; if(s[i]=='S') y--; } cout << fixed << setprecision(10) << sqrt(x*x+y*y) << endl; }