This documentation is automatically generated by online-judge-tools/verification-helper
#include "src/util/stopwatch.hpp"
struct StopWatch {
bool f = false;
clock_t st;
void start() {
f = true;
st = clock();
}
int msecs() {
assert(f);
return (clock()-st)*1000 / CLOCKS_PER_SEC;
}
};
#line 1 "src/util/stopwatch.hpp"
struct StopWatch {
bool f = false;
clock_t st;
void start() {
f = true;
st = clock();
}
int msecs() {
assert(f);
return (clock()-st)*1000 / CLOCKS_PER_SEC;
}
};