feat(codeforces): more div. 3 as
This commit is contained in:
parent
c565027c13
commit
cdf73b9909
136 changed files with 1155 additions and 1 deletions
5
1027/.clang-format
Normal file
5
1027/.clang-format
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
BasedOnStyle: Google
|
||||
IndentWidth: 4
|
||||
ColumnLimit: 100
|
||||
BreakBeforeBraces: Allman
|
||||
PointerAlignment: Left
|
||||
71
1027/2114a.cc
Normal file
71
1027/2114a.cc
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
#include <bits/stdc++.h> // {{{
|
||||
|
||||
#include <version>
|
||||
#ifdef __cpp_lib_ranges_enumerate
|
||||
#include <ranges>
|
||||
namespace rv = std::views;
|
||||
namespace rs = std::ranges;
|
||||
#endif
|
||||
|
||||
#pragma GCC optimize("O2,unroll-loops")
|
||||
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
|
||||
|
||||
using namespace std;
|
||||
|
||||
using i16 = int16_t;
|
||||
using u16 = uint16_t;
|
||||
using i32 = int32_t;
|
||||
using u32 = uint32_t;
|
||||
using i64 = int64_t;
|
||||
using u64 = uint64_t;
|
||||
using f64 = double;
|
||||
using f128 = long double;
|
||||
|
||||
#if __cplusplus >= 202002L
|
||||
template <typename T>
|
||||
constexpr T MIN = std::numeric_limits<T>::min();
|
||||
|
||||
template <typename T>
|
||||
constexpr T MAX = std::numeric_limits<T>::max();
|
||||
#endif
|
||||
|
||||
#ifdef LOCAL
|
||||
#define db(...) std::print(__VA_ARGS__)
|
||||
#define dbln(...) std::println(__VA_ARGS__)
|
||||
#else
|
||||
#define db(...)
|
||||
#define dbln(...)
|
||||
#endif
|
||||
// }}}
|
||||
|
||||
void solve() {
|
||||
u32 n;
|
||||
cin >> n;
|
||||
u32 root = sqrt(n);
|
||||
while (root * root < n) {
|
||||
++root;
|
||||
}
|
||||
if (root * root == n) {
|
||||
println("{} 0", root);
|
||||
} else {
|
||||
println("-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;
|
||||
}
|
||||
// }}}
|
||||
6
1027/io/2114a.1.cpin
Normal file
6
1027/io/2114a.1.cpin
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
5
|
||||
0001
|
||||
1001
|
||||
1000
|
||||
4900
|
||||
2025
|
||||
5
1027/io/2114a.1.cpout
Normal file
5
1027/io/2114a.1.cpout
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
0 1
|
||||
-1
|
||||
-1
|
||||
34 36
|
||||
20 25
|
||||
13
1027/io/2114b.1.cpin
Normal file
13
1027/io/2114b.1.cpin
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
6
|
||||
6 2
|
||||
000000
|
||||
2 1
|
||||
01
|
||||
4 1
|
||||
1011
|
||||
10 2
|
||||
1101011001
|
||||
10 1
|
||||
1101011001
|
||||
2 1
|
||||
11
|
||||
6
1027/io/2114b.1.cpout
Normal file
6
1027/io/2114b.1.cpout
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
NO
|
||||
NO
|
||||
YES
|
||||
NO
|
||||
YES
|
||||
YES
|
||||
13
1027/io/2114c.1.cpin
Normal file
13
1027/io/2114c.1.cpin
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
6
|
||||
6
|
||||
1 2 3 4 5 6
|
||||
3
|
||||
1 2 3
|
||||
4
|
||||
1 2 2 4
|
||||
1
|
||||
2
|
||||
3
|
||||
1 4 8
|
||||
2
|
||||
1 1
|
||||
6
1027/io/2114c.1.cpout
Normal file
6
1027/io/2114c.1.cpout
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
3
|
||||
2
|
||||
2
|
||||
1
|
||||
3
|
||||
1
|
||||
33
1027/io/2114d.1.cpin
Normal file
33
1027/io/2114d.1.cpin
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
7
|
||||
3
|
||||
1 1
|
||||
1 2
|
||||
2 1
|
||||
5
|
||||
1 1
|
||||
2 6
|
||||
6 4
|
||||
3 3
|
||||
8 2
|
||||
4
|
||||
1 1
|
||||
1 1000000000
|
||||
1000000000 1
|
||||
1000000000 1000000000
|
||||
1
|
||||
1 1
|
||||
5
|
||||
1 2
|
||||
4 2
|
||||
4 3
|
||||
3 1
|
||||
3 2
|
||||
3
|
||||
1 1
|
||||
2 5
|
||||
2 2
|
||||
4
|
||||
4 3
|
||||
3 1
|
||||
4 4
|
||||
1 2
|
||||
7
1027/io/2114d.1.cpout
Normal file
7
1027/io/2114d.1.cpout
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
3
|
||||
32
|
||||
1000000000000000000
|
||||
1
|
||||
6
|
||||
4
|
||||
8
|
||||
14
1027/io/2114e.1.cpin
Normal file
14
1027/io/2114e.1.cpin
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
2
|
||||
5
|
||||
4 5 2 6 7
|
||||
1 2
|
||||
3 2
|
||||
4 3
|
||||
5 1
|
||||
6
|
||||
1000000000 500500500 900900900 9 404 800800800
|
||||
3 4
|
||||
5 1
|
||||
2 5
|
||||
1 6
|
||||
6 4
|
||||
2
1027/io/2114e.1.cpout
Normal file
2
1027/io/2114e.1.cpout
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
4 5 2 9 7
|
||||
1000000000 1500500096 1701701691 199199209 404 800800800
|
||||
9
1027/io/2114f.1.cpin
Normal file
9
1027/io/2114f.1.cpin
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
8
|
||||
4 6 3
|
||||
4 5 3
|
||||
4 6 2
|
||||
10 45 3
|
||||
780 23 42
|
||||
11 270 23
|
||||
1 982800 13
|
||||
1 6 2
|
||||
8
1027/io/2114f.1.cpout
Normal file
8
1027/io/2114f.1.cpout
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
2
|
||||
-1
|
||||
-1
|
||||
3
|
||||
3
|
||||
3
|
||||
6
|
||||
-1
|
||||
17
1027/io/2114g.1.cpin
Normal file
17
1027/io/2114g.1.cpin
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
8
|
||||
3 3
|
||||
2 1 4
|
||||
3 7
|
||||
2 1 4
|
||||
2 15
|
||||
2 16
|
||||
3 10
|
||||
256 32 1
|
||||
3 289
|
||||
768 96 1
|
||||
3 290
|
||||
768 96 1
|
||||
5 7
|
||||
5 1 6 3 10
|
||||
4 6
|
||||
6 8 5 10
|
||||
8
1027/io/2114g.1.cpout
Normal file
8
1027/io/2114g.1.cpout
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
YES
|
||||
NO
|
||||
YES
|
||||
YES
|
||||
YES
|
||||
NO
|
||||
YES
|
||||
YES
|
||||
Loading…
Add table
Add a link
Reference in a new issue