S2OJ/judger/uoj_judger/builtin/checker/hcmp.cpp
Masco Skray 96d4a3ecf7 style(judger,web): move code out from subfolder "1"
Due to historical reasons, the code is in subfolder "1".
With SVN removal, we place the code back and remove the annoying "1" folder.
2019-06-14 23:34:41 +08:00

36 lines
821 B
C++

#include "testlib.h"
#include <string>
using namespace std;
pattern pnum("0|-?[1-9][0-9]*");
bool isNumeric(const string& p)
{
return pnum.matches(p);
}
int main(int argc, char * argv[])
{
setName("compare two signed huge integers");
registerTestlibCmd(argc, argv);
string ja = ans.readWord();
string pa = ouf.readWord();
if (!isNumeric(ja))
quitf(_fail, "%s is not a valid integer", compress(ja).c_str());
if (!ans.seekEof())
quitf(_fail, "expected exactly one token in the answer file");
if (!isNumeric(pa))
quitf(_pe, "%s is not a valid integer", compress(pa).c_str());
if (ja != pa)
quitf(_wa, "expected '%s', found '%s'", compress(ja).c_str(), compress(pa).c_str());
quitf(_ok, "answer is '%s'", compress(ja).c_str());
}