mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 21:59:06 +01:00
43 lines
No EOL
433 B
C++
43 lines
No EOL
433 B
C++
#include <iostream>
|
||
|
||
namespace {
|
||
|
||
void solve() {
|
||
// TODO
|
||
}
|
||
|
||
} // namespace
|
||
|
||
// for single test case, comment out for ‹N› test cases
|
||
#define SINGLE
|
||
|
||
#ifndef TEST
|
||
|
||
int main(void) {
|
||
|
||
#ifdef SINGLE
|
||
|
||
solve();
|
||
|
||
#else
|
||
|
||
// for multiple test cases
|
||
int N;
|
||
std::cin >> N >> std::ws;
|
||
|
||
for (auto i = 0; i < N; ++i) {
|
||
solve();
|
||
}
|
||
|
||
#endif
|
||
|
||
return 0;
|
||
}
|
||
|
||
#else
|
||
|
||
#include "../.common/cpp/catch_amalgamated.hpp"
|
||
|
||
// TODO
|
||
|
||
#endif |