rbx.cp 0.5.39__py3-none-any.whl → 0.5.42__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- rbx/box/builder.py +6 -6
- rbx/box/checkers.py +105 -26
- rbx/box/cli.py +860 -0
- rbx/box/code.py +199 -84
- rbx/box/contest/statements.py +4 -2
- rbx/box/generators.py +55 -49
- rbx/box/generators_test.py +7 -7
- rbx/box/main.py +1 -852
- rbx/box/package.py +42 -1
- rbx/box/packaging/boca/packager.py +2 -1
- rbx/box/packaging/main.py +24 -7
- rbx/box/packaging/moj/packager.py +164 -0
- rbx/box/retries.py +5 -5
- rbx/box/schema.py +86 -4
- rbx/box/solutions.py +46 -108
- rbx/box/solutions_test.py +5 -6
- rbx/box/statements/build_statements.py +4 -2
- rbx/box/stresses.py +23 -12
- rbx/box/tasks.py +258 -0
- rbx/box/testcase_extractors.py +21 -21
- rbx/box/testcases/main.py +19 -14
- rbx/box/unit.py +116 -0
- rbx/box/validators.py +27 -18
- rbx/box/validators_test.py +3 -3
- rbx/grading/judge/sandbox.py +8 -0
- rbx/grading/judge/sandboxes/stupid_sandbox.py +12 -7
- rbx/grading/judge/sandboxes/timeit.py +8 -2
- rbx/grading/steps.py +76 -2
- rbx/grading/steps_with_caching.py +45 -3
- rbx/grading/steps_with_caching_run_test.py +51 -49
- rbx/resources/packagers/moj/scripts/compare.sh +101 -0
- rbx/test.py +6 -4
- rbx/testdata/interactive/checker.cpp +21 -0
- rbx/testdata/interactive/gen.cpp +11 -0
- rbx/testdata/interactive/interactor.cpp +63 -0
- rbx/testdata/interactive/problem.rbx.yml +40 -0
- rbx/testdata/interactive/sols/af_ac_pe.cpp +75 -0
- rbx/testdata/interactive/sols/af_ac_re.cpp +76 -0
- rbx/testdata/interactive/sols/af_ac_too_many_iter.cpp +72 -0
- rbx/testdata/interactive/sols/af_inf_cout_with_flush.cpp +79 -0
- rbx/testdata/interactive/sols/af_inf_cout_without_flush.cpp +78 -0
- rbx/testdata/interactive/sols/af_ml.cpp +78 -0
- rbx/testdata/interactive/sols/af_tl_after_ans.cpp +74 -0
- rbx/testdata/interactive/sols/af_wa.cpp +74 -0
- rbx/testdata/interactive/sols/interactive-binary-search_mm_naive_cin.cpp +17 -0
- rbx/testdata/interactive/sols/main.cpp +26 -0
- rbx/testdata/interactive/testplan.txt +6 -0
- rbx/testdata/interactive/validator.cpp +16 -0
- {rbx_cp-0.5.39.dist-info → rbx_cp-0.5.42.dist-info}/METADATA +2 -1
- {rbx_cp-0.5.39.dist-info → rbx_cp-0.5.42.dist-info}/RECORD +53 -32
- {rbx_cp-0.5.39.dist-info → rbx_cp-0.5.42.dist-info}/LICENSE +0 -0
- {rbx_cp-0.5.39.dist-info → rbx_cp-0.5.42.dist-info}/WHEEL +0 -0
- {rbx_cp-0.5.39.dist-info → rbx_cp-0.5.42.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,78 @@
|
|
1
|
+
#include <algorithm>
|
2
|
+
#include <cassert>
|
3
|
+
#include <cmath>
|
4
|
+
#include <cstdio>
|
5
|
+
#include <cstring>
|
6
|
+
#include <ctime>
|
7
|
+
#include <iomanip>
|
8
|
+
#include <iostream>
|
9
|
+
#include <map>
|
10
|
+
#include <queue>
|
11
|
+
#include <set>
|
12
|
+
#include <sstream>
|
13
|
+
#include <string>
|
14
|
+
#include <vector>
|
15
|
+
|
16
|
+
#define forn(i, n) for (int i = 0; i < n; ++i)
|
17
|
+
#define fore(i, l, r) for (int i = int(l); i <= int(r); ++i)
|
18
|
+
#define sz(v) int(v.size())
|
19
|
+
#define all(v) v.begin(), v.end()
|
20
|
+
#define pb push_back
|
21
|
+
#define mp make_pair
|
22
|
+
#define x first
|
23
|
+
#define y1 ________y1
|
24
|
+
#define y second
|
25
|
+
#define ft first
|
26
|
+
#define sc second
|
27
|
+
#define pt pair<int, int>
|
28
|
+
|
29
|
+
template <typename X> inline X abs(const X &a) { return a < 0 ? -a : a; }
|
30
|
+
template <typename X> inline X sqr(const X &a) { return a * a; }
|
31
|
+
|
32
|
+
typedef long long li;
|
33
|
+
typedef long double ld;
|
34
|
+
|
35
|
+
using namespace std;
|
36
|
+
|
37
|
+
const int INF = 1000 * 1000 * 1000;
|
38
|
+
const ld EPS = 1e-9;
|
39
|
+
const ld PI = acos(-1.0);
|
40
|
+
|
41
|
+
int n;
|
42
|
+
int lf, rg;
|
43
|
+
|
44
|
+
bool read() {
|
45
|
+
cin >> n;
|
46
|
+
return true;
|
47
|
+
}
|
48
|
+
|
49
|
+
void solve() {
|
50
|
+
lf = 1, rg = n;
|
51
|
+
vector<int> was;
|
52
|
+
int it = 0;
|
53
|
+
while (lf != rg) {
|
54
|
+
it++;
|
55
|
+
int mid = (lf + rg + 1) / 2;
|
56
|
+
if (it > 5)
|
57
|
+
for (int i = 0; i < 10000000; i++)
|
58
|
+
was.pb(rand());
|
59
|
+
cout << mid << endl;
|
60
|
+
fflush(stdout);
|
61
|
+
string s;
|
62
|
+
cin >> s;
|
63
|
+
if (s == "<")
|
64
|
+
rg = mid - 1;
|
65
|
+
else
|
66
|
+
lf = mid;
|
67
|
+
}
|
68
|
+
|
69
|
+
cout << "! " << lf << endl;
|
70
|
+
}
|
71
|
+
|
72
|
+
int main() {
|
73
|
+
srand(time(NULL));
|
74
|
+
cerr << setprecision(10) << fixed;
|
75
|
+
assert(read());
|
76
|
+
solve();
|
77
|
+
return 0;
|
78
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
#include <algorithm>
|
2
|
+
#include <cassert>
|
3
|
+
#include <cmath>
|
4
|
+
#include <cstdio>
|
5
|
+
#include <cstring>
|
6
|
+
#include <ctime>
|
7
|
+
#include <iomanip>
|
8
|
+
#include <iostream>
|
9
|
+
#include <map>
|
10
|
+
#include <queue>
|
11
|
+
#include <set>
|
12
|
+
#include <sstream>
|
13
|
+
#include <string>
|
14
|
+
#include <vector>
|
15
|
+
|
16
|
+
#define forn(i, n) for (int i = 0; i < n; ++i)
|
17
|
+
#define fore(i, l, r) for (int i = int(l); i <= int(r); ++i)
|
18
|
+
#define sz(v) int(v.size())
|
19
|
+
#define all(v) v.begin(), v.end()
|
20
|
+
#define pb push_back
|
21
|
+
#define mp make_pair
|
22
|
+
#define x first
|
23
|
+
#define y1 ________y1
|
24
|
+
#define y second
|
25
|
+
#define ft first
|
26
|
+
#define sc second
|
27
|
+
#define pt pair<int, int>
|
28
|
+
|
29
|
+
template <typename X> inline X abs(const X &a) { return a < 0 ? -a : a; }
|
30
|
+
template <typename X> inline X sqr(const X &a) { return a * a; }
|
31
|
+
|
32
|
+
typedef long long li;
|
33
|
+
typedef long double ld;
|
34
|
+
|
35
|
+
using namespace std;
|
36
|
+
|
37
|
+
const int INF = 1000 * 1000 * 1000;
|
38
|
+
const ld EPS = 1e-9;
|
39
|
+
const ld PI = acos(-1.0);
|
40
|
+
|
41
|
+
int n;
|
42
|
+
int lf, rg;
|
43
|
+
|
44
|
+
bool read() {
|
45
|
+
cin >> n;
|
46
|
+
return true;
|
47
|
+
}
|
48
|
+
|
49
|
+
void solve() {
|
50
|
+
lf = 1, rg = n;
|
51
|
+
while (lf != rg) {
|
52
|
+
int mid = (lf + rg + 1) / 2;
|
53
|
+
cout << mid << endl;
|
54
|
+
fflush(stdout);
|
55
|
+
string s;
|
56
|
+
cin >> s;
|
57
|
+
if (s == "<")
|
58
|
+
rg = mid - 1;
|
59
|
+
else
|
60
|
+
lf = mid;
|
61
|
+
}
|
62
|
+
|
63
|
+
cout << "! " << lf << endl;
|
64
|
+
while (true) {
|
65
|
+
}
|
66
|
+
}
|
67
|
+
|
68
|
+
int main() {
|
69
|
+
srand(time(NULL));
|
70
|
+
cerr << setprecision(10) << fixed;
|
71
|
+
assert(read());
|
72
|
+
solve();
|
73
|
+
return 0;
|
74
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
#include <algorithm>
|
2
|
+
#include <cassert>
|
3
|
+
#include <cmath>
|
4
|
+
#include <cstdio>
|
5
|
+
#include <cstring>
|
6
|
+
#include <ctime>
|
7
|
+
#include <iomanip>
|
8
|
+
#include <iostream>
|
9
|
+
#include <map>
|
10
|
+
#include <queue>
|
11
|
+
#include <set>
|
12
|
+
#include <sstream>
|
13
|
+
#include <string>
|
14
|
+
#include <vector>
|
15
|
+
|
16
|
+
#define forn(i, n) for (int i = 0; i < n; ++i)
|
17
|
+
#define fore(i, l, r) for (int i = int(l); i <= int(r); ++i)
|
18
|
+
#define sz(v) int(v.size())
|
19
|
+
#define all(v) v.begin(), v.end()
|
20
|
+
#define pb push_back
|
21
|
+
#define mp make_pair
|
22
|
+
#define x first
|
23
|
+
#define y1 ________y1
|
24
|
+
#define y second
|
25
|
+
#define ft first
|
26
|
+
#define sc second
|
27
|
+
#define pt pair<int, int>
|
28
|
+
|
29
|
+
template <typename X> inline X abs(const X &a) { return a < 0 ? -a : a; }
|
30
|
+
template <typename X> inline X sqr(const X &a) { return a * a; }
|
31
|
+
|
32
|
+
typedef long long li;
|
33
|
+
typedef long double ld;
|
34
|
+
|
35
|
+
using namespace std;
|
36
|
+
|
37
|
+
const int INF = 1000 * 1000 * 1000;
|
38
|
+
const ld EPS = 1e-9;
|
39
|
+
const ld PI = acos(-1.0);
|
40
|
+
|
41
|
+
int n;
|
42
|
+
int lf, rg;
|
43
|
+
|
44
|
+
bool read() {
|
45
|
+
cin >> n;
|
46
|
+
return true;
|
47
|
+
}
|
48
|
+
|
49
|
+
void solve() {
|
50
|
+
lf = 1, rg = n;
|
51
|
+
while (rg - lf > 1) {
|
52
|
+
int mid = (lf + rg + 1) / 2;
|
53
|
+
cout << mid << endl;
|
54
|
+
fflush(stdout);
|
55
|
+
string s;
|
56
|
+
cin >> s;
|
57
|
+
if (s == "<")
|
58
|
+
rg = mid - 1;
|
59
|
+
else
|
60
|
+
lf = mid;
|
61
|
+
}
|
62
|
+
int ans = lf;
|
63
|
+
if (rand() % 2)
|
64
|
+
ans = rg;
|
65
|
+
cout << "! " << ans << endl;
|
66
|
+
}
|
67
|
+
|
68
|
+
int main() {
|
69
|
+
srand(time(NULL));
|
70
|
+
cerr << setprecision(10) << fixed;
|
71
|
+
assert(read());
|
72
|
+
solve();
|
73
|
+
return 0;
|
74
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
#include <iostream>
|
2
|
+
|
3
|
+
using namespace std;
|
4
|
+
|
5
|
+
int main() {
|
6
|
+
int n;
|
7
|
+
cin >> n;
|
8
|
+
for (int i = n; i >= 1; i--) {
|
9
|
+
cout << i << endl << flush;
|
10
|
+
string response;
|
11
|
+
cin >> response;
|
12
|
+
if (response == ">=") {
|
13
|
+
cout << "! " << i << endl << flush;
|
14
|
+
return 0;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
}
|
@@ -0,0 +1,26 @@
|
|
1
|
+
#include <cstdio>
|
2
|
+
#include <cstring>
|
3
|
+
|
4
|
+
using namespace std;
|
5
|
+
|
6
|
+
int main() {
|
7
|
+
int n;
|
8
|
+
scanf("%d", &n);
|
9
|
+
|
10
|
+
int l = 1, r = n;
|
11
|
+
while (l != r) {
|
12
|
+
int mid = (l + r + 1) / 2;
|
13
|
+
printf("%d\n", mid);
|
14
|
+
fflush(stdout);
|
15
|
+
|
16
|
+
char response[3];
|
17
|
+
scanf("%s", response);
|
18
|
+
if (strcmp(response, "<") == 0)
|
19
|
+
r = mid - 1;
|
20
|
+
else
|
21
|
+
l = mid;
|
22
|
+
}
|
23
|
+
|
24
|
+
printf("! %d\n", l);
|
25
|
+
fflush(stdout);
|
26
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
#include "testlib.h"
|
2
|
+
#include <bits/stdc++.h>
|
3
|
+
|
4
|
+
using namespace std;
|
5
|
+
|
6
|
+
int main(int argc, char *argv[]) {
|
7
|
+
registerValidation(argc, argv);
|
8
|
+
|
9
|
+
int x = inf.readInt(1, 1000 * 1000, "x");
|
10
|
+
inf.readSpace();
|
11
|
+
int n = inf.readInt(1, 1000 * 1000, "n");
|
12
|
+
inf.readEoln();
|
13
|
+
ensure(x <= n);
|
14
|
+
|
15
|
+
inf.readEof();
|
16
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: rbx.cp
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.42
|
4
4
|
Summary:
|
5
5
|
Author: Roberto Sales
|
6
6
|
Requires-Python: >=3.9,<4.0
|
@@ -29,6 +29,7 @@ Requires-Dist: questionary (>=2.1.0,<3.0.0)
|
|
29
29
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
30
30
|
Requires-Dist: rich (>=13.9.4,<14.0.0)
|
31
31
|
Requires-Dist: ruyaml (>=0.91.0,<0.92.0)
|
32
|
+
Requires-Dist: syncer (>=2.0.3,<3.0.0)
|
32
33
|
Requires-Dist: textual (>=0.79.1,<0.80.0)
|
33
34
|
Requires-Dist: typer (>=0.15.1,<0.16.0)
|
34
35
|
Description-Content-Type: text/markdown
|
@@ -2,10 +2,11 @@ rbx/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
rbx/annotations.py,sha256=LXbVOSkE9kwcxEirsOMo10cEnvol854QvaCBIjhWyE8,3047
|
3
3
|
rbx/autoenum.py,sha256=cusv8ClXRlDVvhZ8eDrtYcL_2peXlHugAey_ht8roXk,12025
|
4
4
|
rbx/box/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
5
|
-
rbx/box/builder.py,sha256=
|
5
|
+
rbx/box/builder.py,sha256=MDm2qqmhedAbhn3rWP6cDwbBsGhV6sz_2sg1zLkPDw0,3613
|
6
6
|
rbx/box/cd.py,sha256=9a_SOnzoJBXxxffp4Wbf3UKXIwKuN3Hvj7K6SocALwE,1194
|
7
|
-
rbx/box/checkers.py,sha256=
|
8
|
-
rbx/box/
|
7
|
+
rbx/box/checkers.py,sha256=l_QYatpKHQTSQ-R7DzNjEkDtdo2g9MkdT_3Kr6xgABU,8690
|
8
|
+
rbx/box/cli.py,sha256=fvVpNoB-Z8liry0Xlg0quIy072-5ncuVmF4uJ8vXLJ4,26131
|
9
|
+
rbx/box/code.py,sha256=t2FbW2nd9D8Eh4u0rMK6VK6_S1vezxQoDtDHFFNFkas,16807
|
9
10
|
rbx/box/compile.py,sha256=OJLthDQ921w9vyoE6Gk1Df54i5RwtRJ2YG-8XEfefcs,2489
|
10
11
|
rbx/box/conftest.py,sha256=sEmciXSeDC-wmrZ1JSxbsUenKNP_VWW32mrCun2pY3I,1070
|
11
12
|
rbx/box/contest/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -14,23 +15,24 @@ rbx/box/contest/contest_package.py,sha256=OaUbpBtkhkgOPzJ1ccI_Vq4FMSaJvZm3gMOKfV
|
|
14
15
|
rbx/box/contest/contest_utils.py,sha256=TDE7I6YQJlu4dQd68wzOp019bNgqiT0RlM-LMQMjL9w,301
|
15
16
|
rbx/box/contest/main.py,sha256=oL-GbyLKdpMjIWiSuWTQgRhQ9hcb7DuNn0axkunx0io,7436
|
16
17
|
rbx/box/contest/schema.py,sha256=JMAig5WpaOahNgAHxA9vX4zYeVYDxpjKP_PFGvmmkE0,4954
|
17
|
-
rbx/box/contest/statements.py,sha256=
|
18
|
+
rbx/box/contest/statements.py,sha256=Or8gFb6P_oViGdeiVgepXsvd_W84mA7LRaVmiAXWWSg,2977
|
18
19
|
rbx/box/creation.py,sha256=Evz7K6JoarD-4JJQsZsgoxU9FgCF9Z7-LfuroG4Cqls,2444
|
19
20
|
rbx/box/deferred.py,sha256=II3X9e87JCOZtmspnHh-n4PFqh-FsH_oc0XJHZ9ZYVQ,691
|
20
21
|
rbx/box/download.py,sha256=MFP-R26JiYGAP89I0TK-0fYc69Fsd20tsBqgtRCy5AE,2234
|
21
22
|
rbx/box/environment.py,sha256=47NtyuVC6zSQKAtQaXPEXvqcD-KJiuWRpWF8pYvcG4c,11158
|
22
23
|
rbx/box/extensions.py,sha256=Von8kIeXvNFTkGlMRMTvL2HIHPwlkuiMswr-ydbGV1w,519
|
23
24
|
rbx/box/formatting.py,sha256=3phFRHzqVXj4Ok1yDhCq6Clbw6KlqwJNpMhs--oTWFI,405
|
24
|
-
rbx/box/generators.py,sha256=
|
25
|
-
rbx/box/generators_test.py,sha256=
|
25
|
+
rbx/box/generators.py,sha256=081wKmLQpR7rGGxL9RUWULZef-1DpUWg4U8mWrHvTI0,12431
|
26
|
+
rbx/box/generators_test.py,sha256=J7aBfuJhU84MWDWzgReRoOuQw_hVa09B8gTKAvL2XVo,1987
|
26
27
|
rbx/box/lazy_importing_main.py,sha256=6Z8As7qVFFT619xHH9Xt8VCH57NjC4aDxfAgkWiUwT8,116
|
27
28
|
rbx/box/lazy_importing_test.py,sha256=B0-b3y_DkxEmtVfu4NfmVsgVdFl6kRCsEL6GLMHJISo,628
|
28
|
-
rbx/box/main.py,sha256=
|
29
|
-
rbx/box/package.py,sha256=
|
29
|
+
rbx/box/main.py,sha256=oCsk3xr0NsK4v_IEZItBV5QXFINRuOK-W4CVvFSm1V4,90
|
30
|
+
rbx/box/package.py,sha256=SgwR-s2dm79ZWk4Q1yugALDJj5w74IhxhZ0fV2XK008,13245
|
30
31
|
rbx/box/packaging/boca/extension.py,sha256=hQhcbocNfW2ESv5RalS1wf6uvOoOfOnR_gHvbXUbSzY,852
|
31
|
-
rbx/box/packaging/boca/packager.py,sha256=
|
32
|
+
rbx/box/packaging/boca/packager.py,sha256=KE-BpFZh8r7ftZJGmD6Zx1bWOTrbNhgS7i9k-yDtfK4,10740
|
32
33
|
rbx/box/packaging/contest_main.py,sha256=nMdgPE4OK_tsnUMdRI1cJwLpgxGrwW_mJjox0oOALWw,2757
|
33
|
-
rbx/box/packaging/main.py,sha256=
|
34
|
+
rbx/box/packaging/main.py,sha256=65WUve5qTAqM8EGltZK9UoWTSIGQBUZtJhV8sauxdNM,2751
|
35
|
+
rbx/box/packaging/moj/packager.py,sha256=prNtHAYLNbNJssq_YQAERDW9dtCpL8D2xhIDp731i5c,5847
|
34
36
|
rbx/box/packaging/packager.py,sha256=suCT_SLnWa915rV2j8VFqzH43HGKRTr9mGGlrvj45aw,3267
|
35
37
|
rbx/box/packaging/polygon/packager.py,sha256=HNpxP2nclLChSnrQtkT7tLwDdXHl1dzXMIF5RZwr9M4,10811
|
36
38
|
rbx/box/packaging/polygon/test.py,sha256=bgEju5PwudgyfwxXJagm8fM6CJVlWM6l_-2q1V-oKaQ,3069
|
@@ -39,35 +41,37 @@ rbx/box/presets/__init__.py,sha256=BwmjBw8wF8yiZFjCYBjMk-HGMZaRwhlfszbWAj3B0vw,1
|
|
39
41
|
rbx/box/presets/fetch.py,sha256=F-BCOlvEBEyDqtOhiDuGPn4EDtA4Bwm-fqHJ7zZGlW8,1975
|
40
42
|
rbx/box/presets/lock_schema.py,sha256=6sRPnyePOC8yy-5WcD5JRZdDJHf8loqbvpQ1IPiOU9s,349
|
41
43
|
rbx/box/presets/schema.py,sha256=mZmSPkQsw7eQM0lQN6er1MO_LiW1ObwwAZFDK0F5fxE,1962
|
42
|
-
rbx/box/retries.py,sha256=
|
44
|
+
rbx/box/retries.py,sha256=tRk2K1bXw2xnwkAj2CsktRHTEhw7YKcPxMQTT6mCy-E,4707
|
43
45
|
rbx/box/sanitizers/warning_stack.py,sha256=RI97_GJgdjTKIXY_r0EKp5h0qQQSDSdNDh5K7zINrqs,2861
|
44
|
-
rbx/box/schema.py,sha256=
|
46
|
+
rbx/box/schema.py,sha256=P1jVaeqe4OcotAJOqu3T5WD8DR-amZyyq3cau5rPiM8,17086
|
45
47
|
rbx/box/setter_config.py,sha256=s53talhwM6FTGDCcBhY7IlZ6_6mJ3PMp6V4kTtaSs50,4262
|
46
|
-
rbx/box/solutions.py,sha256=
|
47
|
-
rbx/box/solutions_test.py,sha256=
|
48
|
+
rbx/box/solutions.py,sha256=lzvk72PsQOE0TMK6AOk-qNROK0fRAKcGINtokq6gypU,42554
|
49
|
+
rbx/box/solutions_test.py,sha256=TCowbxBG3SvDlFO5-qtBj_M_HrAHe0IJaI1XwoQ1d00,1718
|
48
50
|
rbx/box/state.py,sha256=cBeEkJXSXLwYmCT0yLq2TjycusKFpjOeW8yPRIi6K-o,137
|
49
51
|
rbx/box/statements/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
-
rbx/box/statements/build_statements.py,sha256=
|
52
|
+
rbx/box/statements/build_statements.py,sha256=uHlC3y3PtKaGUd2ZS_zYxi6-AKco6v_yd-lvm6BfrNA,12091
|
51
53
|
rbx/box/statements/builders.py,sha256=L67i-CP6ftDm2wR6VWywTd3ad7-fhWSSMfaN66Gt13s,11201
|
52
54
|
rbx/box/statements/joiners.py,sha256=jItNXkAbTjFQpPMgfDMW86n3vMTbaE8sgo9I8Yf4Txg,2886
|
53
55
|
rbx/box/statements/latex.py,sha256=LkcHwXjMFxbw--Gj9T1VkFKQFsXhY9dN7xZHpZycNW8,1346
|
54
56
|
rbx/box/statements/latex_jinja.py,sha256=7WBfn1h8DpqCAmSE6Av64HfURMnJ2AO4QX1CD72sz5E,7096
|
55
57
|
rbx/box/statements/schema.py,sha256=ES8EUE9JE_uJlDwQx1kZd_5nQJyABtlnjP5IjbWaJ-0,3897
|
56
|
-
rbx/box/stresses.py,sha256=
|
58
|
+
rbx/box/stresses.py,sha256=E4JU1JrUcikPA6QEACKnEOBkRocpEhswkF1iE7aRD5U,12147
|
57
59
|
rbx/box/stressing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
60
|
rbx/box/stressing/finder_parser.py,sha256=jXpYNa4FyugzmHi3r96Uv4rU1krRQJc5Ihr9jf1cvNo,11918
|
59
61
|
rbx/box/stressing/generator_parser.py,sha256=oHZryjR3YohgaSO9WEirQ7b2e-98WgZStF0N99W4Thw,7380
|
60
|
-
rbx/box/
|
62
|
+
rbx/box/tasks.py,sha256=g-dHeF97rSEiO41KUN-OIzXP6SkbRAkUnMZ1Xess4sY,8742
|
63
|
+
rbx/box/testcase_extractors.py,sha256=T5vCW5qERlqitGrFP6RuITEVr9o8XQozNa4AsxfuV_Y,11871
|
61
64
|
rbx/box/testcase_utils.py,sha256=qtv7-bJbbblMgINvcf_3YTdD85MTtWpD23KUSZUL1as,4327
|
62
65
|
rbx/box/testcases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
63
|
-
rbx/box/testcases/main.py,sha256=
|
66
|
+
rbx/box/testcases/main.py,sha256=sLEgpVCDjRc3tJcU--DNWMmc58KgrkQe4zGzBorO-rk,5394
|
64
67
|
rbx/box/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
65
68
|
rbx/box/ui/captured_log.py,sha256=ptICDPViVnz-_2NfrcB0SSBXNW5L74zI-vAZNN7kSok,11319
|
66
69
|
rbx/box/ui/css/app.tcss,sha256=apd5PkPEvl5jK3kE2qrxPyVED1VnvSsj08QQwzUPwEA,786
|
67
70
|
rbx/box/ui/main.py,sha256=b0rHcBF42W4AOCv7WhtiGf_rUnY0yxpqO5oj3wfR4R4,984
|
68
71
|
rbx/box/ui/run.py,sha256=wMEXrEFdQvMHz2hRKAFIithTnTtaL0kNQZu0jKmb8jI,7060
|
69
|
-
rbx/box/
|
70
|
-
rbx/box/
|
72
|
+
rbx/box/unit.py,sha256=veyBuz_7AbDFbdWi02jq_zLwXEkmgt0djXgVJU-OYCU,3755
|
73
|
+
rbx/box/validators.py,sha256=oqlNhw7jivbbH5l8g3xwihPRy76AM7MA3G4A8nyI_V0,10416
|
74
|
+
rbx/box/validators_test.py,sha256=WY4Ho-wlsPHc0YNuz0KFVd6KQ9ouuiou3w5_zMOZ4Fs,362
|
71
75
|
rbx/checker.py,sha256=pj1jO3my48ru-qugbER5onccANCjoR0-PaFe3H3VGEY,4118
|
72
76
|
rbx/clone.py,sha256=wpHyED0_7ST7LD3vj7HjXhzqEzlwh6dRQvKQVDYhGeU,6744
|
73
77
|
rbx/config.py,sha256=0Mzlh5Ud4Ju7o7uyyRYhQpg8sMP7psUns_xlou6Bopk,8187
|
@@ -81,17 +85,17 @@ rbx/grading/conftest.py,sha256=iN9LUG1IQqhK5JjkctcP68v6675oYsiD2sQSgyLMTqw,960
|
|
81
85
|
rbx/grading/judge/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
86
|
rbx/grading/judge/cacher.py,sha256=W4bdPIvI8tXOl8A7B4Ncuzi9-zXCp0DX40i1XKQGOAU,17761
|
83
87
|
rbx/grading/judge/digester.py,sha256=m6o-kjwyFOXKdImUXtVbdMHhwrgrXk8FDnJFVefnTIw,951
|
84
|
-
rbx/grading/judge/sandbox.py,sha256=
|
88
|
+
rbx/grading/judge/sandbox.py,sha256=EhaO9lY_DewQFHojHUVZCgEeKU6bVKR73KBjL2NBNy8,23841
|
85
89
|
rbx/grading/judge/sandboxes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
90
|
rbx/grading/judge/sandboxes/isolate.py,sha256=9xgBuNfAvGtO2zME1FXRah2rcPvzDShsPG0TTuX_UDU,25649
|
87
|
-
rbx/grading/judge/sandboxes/stupid_sandbox.py,sha256=
|
88
|
-
rbx/grading/judge/sandboxes/timeit.py,sha256=
|
91
|
+
rbx/grading/judge/sandboxes/stupid_sandbox.py,sha256=xmYp-Vfr9pp0KUOHt63kqcbEBLntGuW5MykH_L8lS50,10256
|
92
|
+
rbx/grading/judge/sandboxes/timeit.py,sha256=CxWNslAiz1ildDXqU5Z_5rrQTHBvjixaaLRG5MZTesU,6889
|
89
93
|
rbx/grading/judge/storage.py,sha256=FirqjwDqb0m0h2OTFyWrZL7CQ4XjZNxhqB4JpnDIhZY,9485
|
90
94
|
rbx/grading/judge/test.py,sha256=ll0Iw7zyOpGdKPD_PGH7dvUkb4stQLu-ikbQnqJvuAc,944
|
91
95
|
rbx/grading/judge/testiso.py,sha256=v14DtkWiZFJ9AKMzrb0_vZKPWDt8jz8iIw1Z2O-Advk,1397
|
92
|
-
rbx/grading/steps.py,sha256=
|
93
|
-
rbx/grading/steps_with_caching.py,sha256=
|
94
|
-
rbx/grading/steps_with_caching_run_test.py,sha256=
|
96
|
+
rbx/grading/steps.py,sha256=jpGsUMvyquaZraZlwf5YqxfQLK-F2OateFpJ8ZheQO8,25219
|
97
|
+
rbx/grading/steps_with_caching.py,sha256=nez2YwgauGXKRjhk6tQxTDGQ-HEk7KfZOeAPhsxi5iw,3150
|
98
|
+
rbx/grading/steps_with_caching_run_test.py,sha256=mh4DRInrOGhnQFWD1SlcjDm_HvcSDFTDMSpAlG-Q5SI,15570
|
95
99
|
rbx/grading_utils.py,sha256=lL2KtSkOsMElqrRoApQTbFcqVOeHVWUDTMCa3IsLpC4,4484
|
96
100
|
rbx/hydration.py,sha256=WqbgIfCZNwqspVhMuUlx8-sNOYhq_ZWbeZnkcetuAZI,3669
|
97
101
|
rbx/main.py,sha256=hbXMb6ofV4cowEnFt9-mSa3qenXthuKTkv9ECS4-c9w,2912
|
@@ -122,6 +126,7 @@ rbx/resources/packagers/boca/run/java,sha256=raJu_-wdc-KTvWgFoQsW2Zxp70PoLvitSyi
|
|
122
126
|
rbx/resources/packagers/boca/run/kt,sha256=D1KbwscStaawlesXgQICP2oRaXBevO4XcUd8RrT0whk,4655
|
123
127
|
rbx/resources/packagers/boca/run/py2,sha256=6xjPmoIEblvbM5k9Gm_fwxU-RmrihMX9j3LSUMyXws4,4908
|
124
128
|
rbx/resources/packagers/boca/run/py3,sha256=-TRTRMBiiIhVz5EAfXM_3IKC8u49VUHSfyHbWWiW5-w,4908
|
129
|
+
rbx/resources/packagers/moj/scripts/compare.sh,sha256=K6iCRqvvNiJHOl5pWs6RJGuRq6la7AarNQaIwZvMULI,2721
|
125
130
|
rbx/resources/presets/default/contest/contest.rbx.yml,sha256=aThSvWG0Nv4BKoucQG6Q0KpS20hsT46BHyVCQTdvtUM,424
|
126
131
|
rbx/resources/presets/default/contest/statement/contest.rbx.tex,sha256=3YDQo5c-SGbwXcd4uytyY_Mc7UriAditgdJnbN8UdHg,3062
|
127
132
|
rbx/resources/presets/default/contest/statement/olymp.sty,sha256=k4TCQz1IeXV75oZ2_dcWEQ3ziTDegOEdnYn4Xb4vzsU,6766
|
@@ -150,7 +155,7 @@ rbx/submit.py,sha256=7AMqiPyfQRdeO8UPRZqs_gQ88ws5lJrJ_0u40PoVJbQ,2246
|
|
150
155
|
rbx/submitors/__init__.py,sha256=sVcRNnuKMZatmpGkQURaEVHK-MfU2U0nH4nOatuqywE,620
|
151
156
|
rbx/submitors/codeforces.py,sha256=TWOfGRbYnPAphaPW1j9JsrL29sAJf-OSakxQjJyBMkU,3998
|
152
157
|
rbx/submitors/submitor.py,sha256=8q-Hbdahxt30ciT_R9j_xF6lEPUh9IcfAUnzjQjbvHU,457
|
153
|
-
rbx/test.py,sha256=
|
158
|
+
rbx/test.py,sha256=tZyTrXDK8MLR-1TyCRxiOiNz-PhlXVpshfUGphakkT4,11830
|
154
159
|
rbx/testcase.py,sha256=yKOq3CAJZ1YTmInvnoIs0u1iJnRj_X85XiWbLI-p9d8,1951
|
155
160
|
rbx/testcase_rendering.py,sha256=nfmv6dSEqd4aR3TsaODwkKGK6AXty_DDKtWf_ejiQpI,2084
|
156
161
|
rbx/testdata/box1/gen1.cpp,sha256=Yx4uxlEtCeuC7NjrnRotONJBldiR5HSD6jvvVyjjh1I,91
|
@@ -168,10 +173,26 @@ rbx/testdata/box1/validator.cpp,sha256=EWiKEWB6Nvke3SjBWHnkhkKJjwOqY_WX5kuXLxibA
|
|
168
173
|
rbx/testdata/box1/wa.sol.cpp,sha256=qsHmvtLJOFI_sdvUT6ITqk7FJYqhrRTCmEIRdy4gSGE,407
|
169
174
|
rbx/testdata/caching/executable.py,sha256=WKRHNf_fprFJd1Fq1ubmQtR3mZzTYVNwKPLWuZ4HrWg,10
|
170
175
|
rbx/testdata/compatible,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
176
|
+
rbx/testdata/interactive/checker.cpp,sha256=ILPhx0x6XyahJs_zuMkB9D_6swWs7PJE2dALO4wBXFE,516
|
177
|
+
rbx/testdata/interactive/gen.cpp,sha256=XF8NezWJy2XFxp2O03eiSUZUH6uHfFIPuvsZ5mqohc8,235
|
178
|
+
rbx/testdata/interactive/interactor.cpp,sha256=2kcX4W9P2iqnNUTya2Cckoj-NO8jEIZoDAjTrPdpn8A,1319
|
179
|
+
rbx/testdata/interactive/problem.rbx.yml,sha256=LY0Ti-ZHLJCIwYwQ1dcX0WsAwAk4WwHIjLkzUD7DfX8,889
|
180
|
+
rbx/testdata/interactive/sols/af_ac_pe.cpp,sha256=GYDSmcyoZVtDbLlvMmJhMweb3jutgkjnZjHqaI9tJZE,1369
|
181
|
+
rbx/testdata/interactive/sols/af_ac_re.cpp,sha256=mlD0izWJIxwvbSLq3zkdBAZRfo8cOoaEty-w7swqJMk,1376
|
182
|
+
rbx/testdata/interactive/sols/af_ac_too_many_iter.cpp,sha256=k1bYYxDlXHz_RVnPeWyfTRzCctSctfxIsLc6l0nHCKM,1306
|
183
|
+
rbx/testdata/interactive/sols/af_inf_cout_with_flush.cpp,sha256=591Vfc7AqxgcR6fUMkb8mOS_jX8lXUnXnnghx3e2tks,1449
|
184
|
+
rbx/testdata/interactive/sols/af_inf_cout_without_flush.cpp,sha256=11fjgkxdaZvsT_0g4mtjHaaWjH4ciD3MduVJyv62-0Q,1425
|
185
|
+
rbx/testdata/interactive/sols/af_ml.cpp,sha256=h9FfzvtUdZFpJ95dTIf5JBJElIUy4R6wnnhcmalvBPo,1438
|
186
|
+
rbx/testdata/interactive/sols/af_tl_after_ans.cpp,sha256=oLXUMn9gZ06hA19UE5rxhnUl-cJ8tI_7J8bxqQ670dU,1334
|
187
|
+
rbx/testdata/interactive/sols/af_wa.cpp,sha256=zlE6aAVIcQvrdH-KUYLXsHOc8CgcuJmUNS-BxhNbL5Q,1364
|
188
|
+
rbx/testdata/interactive/sols/interactive-binary-search_mm_naive_cin.cpp,sha256=90ZUuIWehGmn4_L3wX_J4nRps9W1Po_kZrEJuWxUOIQ,281
|
189
|
+
rbx/testdata/interactive/sols/main.cpp,sha256=whWhcJfHP6QJ1DGaqcoDc_MDbqG_gfpD4hNAUT8vAa8,394
|
190
|
+
rbx/testdata/interactive/testplan.txt,sha256=ZPoU7O5nAasROa2evnaR3gHGDZsiKZ3PUTbtUHhe8rs,69
|
191
|
+
rbx/testdata/interactive/validator.cpp,sha256=KCxrwDqiBf8z6Ml1Xk9XSZbEtH35Ud7gy9ux-Ek2cPY,301
|
171
192
|
rbx/testing_utils.py,sha256=ZXMysGXpTtvS1lfLL38FuD5iSIyxi3ARjQePDrUmEtc,2067
|
172
193
|
rbx/utils.py,sha256=6e1eXRzNE-52D0UVtqclePxqR4Haiqt8qWCrSVjnGuE,4585
|
173
|
-
rbx_cp-0.5.
|
174
|
-
rbx_cp-0.5.
|
175
|
-
rbx_cp-0.5.
|
176
|
-
rbx_cp-0.5.
|
177
|
-
rbx_cp-0.5.
|
194
|
+
rbx_cp-0.5.42.dist-info/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
195
|
+
rbx_cp-0.5.42.dist-info/METADATA,sha256=Eglv646z3n9611spOrS3jjBwzhgIv4iODSJ1LiGujR4,3302
|
196
|
+
rbx_cp-0.5.42.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
197
|
+
rbx_cp-0.5.42.dist-info/entry_points.txt,sha256=qBTLBOeifT1F00LWaEewRRE_jQPgvH7BUdJfZ-dYsFU,57
|
198
|
+
rbx_cp-0.5.42.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|