Artifact e239d468ae47778cadc00aa57e8e67c265a94a45
#include <iostream>
#include <sstream>
#include <iomanip>
#include <vector>
#include <string>
#include <map>
#include <set>
#include <algorithm>
#include <numeric>
#include <iterator>
#include <functional>
#include <complex>
#include <queue>
#include <stack>
#include <cmath>
#include <cassert>
#include <cstring>
using namespace std;
typedef long long LL;
typedef complex<double> CMP;
class PotatoGame { public:
string theWinner(int n)
{
return n%5==0 || n%5==2 ? "Hanako" : "Taro";
}
};
// BEGIN CUT HERE
#include <ctime>
double start_time; string timer()
{ ostringstream os; os << " (" << int((clock()-start_time)/CLOCKS_PER_SEC*1000) << " msec)"; return os.str(); }
template<typename T> ostream& operator<<(ostream& os, const vector<T>& v)
{ os << "{ ";
for(typename vector<T>::const_iterator it=v.begin(); it!=v.end(); ++it)
os << '\"' << *it << '\"' << (it+1==v.end() ? "" : ", "); os << " }"; return os; }
void verify_case(const string& Expected, const string& Received) {
bool ok = (Expected == Received);
if(ok) cerr << "PASSED" << timer() << endl; else { cerr << "FAILED" << timer() << endl;
cerr << "\to: \"" << Expected << '\"' << endl << "\tx: \"" << Received << '\"' << endl; } }
#define CASE(N) {cerr << "Test Case #" << N << "..." << flush; start_time=clock();
#define END verify_case(_, PotatoGame().theWinner(n));}
int main(){
CASE(0)
int n = 1;
string _ = "Taro";
END
CASE(1)
int n = 2;
string _ = "Hanako";
END
CASE(2)
int n = 3;
string _ = "Taro";
END
CASE(3)
int n = 4;
string _ = "Taro";
END
CASE(4)
int n = 5;
string _ = "??";
END
CASE(6)
int n = 1000000000;
string _ = "??";
END
CASE(7)
int n = 8;
string _ = "Taro";
END
}
// END CUT HERE