mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 09:58:49 +00:00
22 lines
380 B
C++
22 lines
380 B
C++
/**
|
|
* @file spj.cc
|
|
* @author Macesuted Kysic
|
|
* @date 2021-02-04
|
|
*
|
|
* @copyright Copyright (c) 2021
|
|
*
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
#include "testlib.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
registerTestlibCmd(argc, argv);
|
|
std::string s = ouf.readToken();
|
|
if (s == "ok532124524657743124323")
|
|
quitf(_ok, "Correct");
|
|
else
|
|
quitf(_wa, "Wrong Answer");
|
|
}
|