-
starting position (CodeForces)232's competitive-programming templates. 2024. 8. 1. 18:47
#include <bits/stdc++.h> using int64 = long long; void solveOne() { } int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(nullptr); std::cin.exceptions(std::ios_base::badbit | std::ios_base::failbit); int nt = 1; std::cin >> nt; for (int it = 0; it < nt; ++it) { solveOne(); } return 0; }
'232's competitive-programming templates.' 카테고리의 다른 글
DisjointSparseTable (0) 2024.08.03 Hld (0) 2024.08.03 Combinations (0) 2024.08.01 ModInt (0) 2024.08.01 Fail function and Linear string search (0) 2024.07.26