#include using namespace std; typedef long long ll; typedef long double ld; template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } else { return false; } } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } else { return false; } } #define rep(i, s, n) for(int i = (s); i < n; i++) #define reps(i, s, n) for(int i = (s); i <= n; i++) #define rrep(i, n, s) for(int i = n; i >= (s); i--) #define all(x) (x).begin(), (x).end() #define print(V) for (int z = 0; z < (V).size(); z++) { cout << V[z] << " "; } cout << endl; #define MOD 998244353 #define MOD2 1000000007 #define INF 1LL << 60 #define PI acos(-1) vector p; bool solve(int l, int r) { if (l == r) { return p[l]; } return p[l] & solve(l + 1, r); } int main(void) { int n; cin >> n; string s; p.resize(n + 1); rep(i, 0, n) { cin >> s; if (s == "Yes") { p[i + 1] = true; } else { p[i + 1] = false; } } vector ans; reps(i, 1, n) { int l = 1, r = i; ans.push_back(solve(l, r)); } for (bool res : ans) { if (res) { cout << "Yes" << endl; } else { cout << "No" << endl; } } return 0; }