We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b780b3 commit 7b15e65Copy full SHA for 7b15e65
.github/workflows/ci.yml
@@ -180,7 +180,7 @@ jobs:
180
matrix:
181
os: [macos-12]
182
compiler: [g++]
183
- version: [11, 12, 13]
+ version: [12, 13, 14]
184
name: Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
185
runs-on: ${{ matrix.os }}
186
steps:
@@ -209,7 +209,7 @@ jobs:
209
210
os: [macos-13]
211
212
213
214
215
generators/igen.cpp
@@ -13,5 +13,5 @@ using namespace std;
13
int main(int argc, char *argv[]) {
14
registerGen(argc, argv, 1);
15
16
- println(rnd.next(1, 1'000'000));
+ println(rnd.next(1, 1000000));
17
}
generators/iwgen.cpp
@@ -7,16 +7,16 @@
7
*
8
* If parameter "weight" > 0 then you can think about it as code like this:
9
* <code>
10
- * result = rnd.next(1, 1'000'000);
+ * result = rnd.next(1, 1000000);
11
* for (int i = 0; i < weight; i++)
12
- * result = max(result, rnd.next(1, 1'000'000));
+ * result = max(result, rnd.next(1, 1000000));
* </code>
* If parameter "weight" < 0 then you can think about it as code like this:
18
* for (int i = 0; i < -weight; i++)
19
- * result = min(result, rnd.next(1, 1'000'000));
+ * result = min(result, rnd.next(1, 1000000));
20
21
22
* It is typical behaviour of "wnext" methods to use this strategy to
@@ -30,5 +30,5 @@ using namespace std;
30
31
32
33
- println(rnd.wnext(1, 1'000'000, opt<int>(1)));
+ println(rnd.wnext(1, 1000000, opt<int>(1)));
34
tests/test-001_run-sval-case-nval/src/case-nval.cpp
@@ -17,7 +17,7 @@ int main(int argc, char *argv[]) {
for (int testCase = 1; testCase <= testCaseCount; testCase++) {
setTestCase(testCase);
- int n = inf.readInt(1, 10'000, "n");
+ int n = inf.readInt(1, 10000, "n");
inf.readEoln();
inf.readInts(n, -1000, 1000, "a");
23
validators/case-nval.cpp
validators/nval.cpp
@@ -11,10 +11,10 @@ using namespace std;
registerValidation(argc, argv);
- int n = inf.readInt(1, 100'000, "n");
+ int n = inf.readInt(1, 100000, "n");
- inf.readLongs(n, -1'000'000'000LL * 1'000'000LL, 1'000'000'000LL * 1'000'000LL, "a");
+ inf.readLongs(n, -1000000000LL * 1000000LL, 1000000000LL * 1000000LL, "a");
inf.readEof();
validators/undirected-graph-validator.cpp
@@ -9,7 +9,7 @@ int main(int argc, char *argv[]) {
int n = inf.readInt(1, 1000, "n");
inf.readSpace();
- int m = inf.readInt(0, 100'000, "m");
+ int m = inf.readInt(0, 100000, "m");
set<pair<int, int>> edges;
validators/undirected-tree-validator.cpp
@@ -26,7 +26,7 @@ bool merge(vector<int> &dsu, int a, int b) {
26
27
28
29
- int n = inf.readInt(2, 100'000, "n");
+ int n = inf.readInt(2, 100000, "n");
vector<int> dsu(n);
0 commit comments