1 2 3 4 5 6 7 8 9 10 11 12 13
| #include <bits/stdc++.h> using namespace std; long long n,l,g,w,h; int main(){ scanf ("%lld%lld%lld",&n,&l,&g); while (n--){ scanf ("%lld%lld",&w,&h); while (w>g||h>g)w>>=1,h>>=1; if (w<l||h<l){puts("Too Young");continue;} if (w!=h){puts("Too Simple");continue;} puts("Sometimes Naive"); } }
|