#include using namespace std; using ll = long long; const ll INF = 1ll << 60; #define REP(i, n) for(ll i =0; i < ll(n); i++) template using V = vector; template bool chmax(A& a, B b) { return a bool chmin(A& a, B b) { return b> s; if(ssize(s) > 32) { cout << "400\n"; return; } if(s[0] == '_' || s[0] == '-') { cout << "400\n"; return; } for(char c : s) { if('A' <= c && c <= 'Z' || 'a' <= c && c <= 'z' || '0' <= c && c <= '9' || c == '_' || c == '-') { } else { cout << "400\n"; return; } } cout << "200\n"; } int main() { cin.tie(0)->sync_with_stdio(0); testcase(); }