remove old contest
This commit is contained in:
parent
920254d04d
commit
6fc5131466
65 changed files with 0 additions and 219 deletions
|
|
@ -1,26 +0,0 @@
|
|||
#include <iostream>
|
||||
#include <cstdint>
|
||||
using u32 = uint32_t;
|
||||
using namespace std;
|
||||
|
||||
void solve() {
|
||||
cout << 1;
|
||||
}
|
||||
|
||||
int main() { // {{{
|
||||
std::cin.exceptions(std::cin.failbit);
|
||||
#ifdef LOCAL
|
||||
std::cerr.rdbuf(std::cout.rdbuf());
|
||||
std::cout.setf(std::ios::unitbuf);
|
||||
std::cerr.setf(std::ios::unitbuf);
|
||||
#else
|
||||
std::cin.tie(nullptr)->sync_with_stdio(false);
|
||||
#endif
|
||||
u32 tc = 1;
|
||||
std::cin >> tc;
|
||||
for (u32 t = 0; t < tc; ++t) {
|
||||
solve();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
// }}}
|
||||
Loading…
Add table
Add a link
Reference in a new issue