---------------------------------------
模拟中的模拟
---------------------------------------
--------------------------------------
1 #include<iostream> 2 #include<cstring> 3 #include<bits/stdc++.h> 4 using namespace std; 5 long long int n,G,L,x,y; 6 int main() 7 8 { 9 cin>>n>>L>>G; 10 for(int i=1;i<=n;++i) 11 { 12 cin>>x>>y; 13 while(x>G||y>G) 14 { 15 x/=2; 16 17 y/=2; 18 } if(x<L||y<L) 19 { 20 puts("Too Young"); 21 continue; 22 } 23 if(x==y) 24 { 25 puts("Sometimes Naive"); 26 continue; 27 } 28 else 29 { 30 puts("Too Simple"); 31 } 32 } 33 return 0; 34 }