@@ -4,31 +4,31 @@ INSERT INTO component(component_id, problem_id, result_type_id, method_name, cla
4
4
INSERT INTO component(component_id, problem_id, result_type_id, method_name, class_name, component_type_id, status_id) VALUES (3002, 2001, 1, 'method_2', 'TestProblem', 2, 1);
5
5
6
6
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4001, "SRM 4001", "A", -1);
7
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5001, 4001, "Practice 4001", "A", 2 , 0);
7
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5001, 4001, "Practice 4001", "A", 3 , 0);
8
8
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5001, 5001, 'room ', 3);
9
9
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5001, 3001, 2, 1, 500);
10
10
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7001, 5001, 132456, 3001, 0, 120, 1);
11
11
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id, submission_number) VALUES(7002, 5001, 132457, 3001, 0, 110, 1, 001);
12
12
INSERT INTO round_segment(round_id, segment_id, start_time, end_time, status) VALUES(5001, 1, '2014-09-20 00:00:00', '2014-09-21 00:00:00', 'P');
13
13
14
14
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4002, "SRM 4002", "A", -1);
15
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5002, 4002, "Practice 4002", "A", 2 , 0);
15
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5002, 4002, "Practice 4002", "A", 3 , 0);
16
16
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5002, 5002, 'room ', 3);
17
17
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5002, 3001, 2, 1, 250);
18
18
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7003, 5002, 132456, 3001, 200, 150, 1);
19
19
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7004, 5002, 132457, 3001, 0, 110, 1);
20
20
INSERT INTO round_segment(round_id, segment_id, start_time, end_time, status) VALUES(5002, 1, '2014-09-15 00:00:00', '2014-09-18 00:00:00', 'P');
21
21
22
22
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4003, "SRM 4003", "A", -1);
23
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5003, 4003, "Practice 4003", "A", 2 , 0);
23
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5003, 4003, "Practice 4003", "A", 3 , 0);
24
24
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5003, 5003, 'room ', 3);
25
25
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5003, 3002, 2, 1, 400);
26
26
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7005, 5003, 132456, 3002, 100, 150, 1);
27
27
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7006, 5003, 132457, 3002, 0, 160, 1);
28
28
INSERT INTO round_segment(round_id, segment_id, start_time, end_time, status) VALUES(5003, 1, '2014-09-25 00:00:00', '2014-09-26 00:00:00', 'P');
29
29
30
30
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4004, "SRM 4004", "A", -1);
31
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5004, 4004, "Practice 4004", "A", 2 , 0);
31
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5004, 4004, "Practice 4004", "A", 3 , 0);
32
32
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5004, 5004, 'room ', 3);
33
33
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5004, 3002, 2, 1, 300);
34
34
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7007, 5004, 132456, 3002, 50, 150, 1);
@@ -41,7 +41,7 @@ INSERT INTO problem(problem_id, name, status_id, problem_type_id, proposed_diffi
41
41
INSERT INTO component(component_id, problem_id, result_type_id, method_name, class_name, component_type_id, status_id) VALUES (3003, 2002, 18, 'method_2', 'problem_class2', 1, 1);
42
42
43
43
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4005, "SRM 4005", "A", -1);
44
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5005, 4005, "Practice 4005", "A", 2 , 0);
44
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5005, 4005, "Practice 4005", "A", 3 , 0);
45
45
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5005, 5005, 'room ', 3);
46
46
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5005, 3003, 2, 1, 200);
47
47
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7009, 5005, 132456, 3003, 0, 120, 1);
@@ -55,15 +55,15 @@ INSERT INTO component(component_id, problem_id, result_type_id, method_name, cla
55
55
INSERT INTO component(component_id, problem_id, result_type_id, method_name, class_name, component_type_id, status_id) VALUES (3005, 2003, 1, 'method_4', 'TestProblem', 2, 1);
56
56
57
57
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4006, "SRM 4006", "A", -1);
58
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5006, 4006, "Practice 4006", "A", 2 , 0);
58
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5006, 4006, "Practice 4006", "A", 3 , 0);
59
59
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5006, 5006, 'room ', 3);
60
60
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5006, 3004, 2, 1, 100);
61
61
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7011, 5006, 132456, 3004, 80, 150, 1);
62
62
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id, submission_number) VALUES(7012, 5006, 132457, 3004, 0, 130, 1, 001);
63
63
INSERT INTO round_segment(round_id, segment_id, start_time, end_time, status) VALUES(5006, 1, '2014-09-20 00:00:00', '2014-09-21 00:00:00', 'P');
64
64
65
65
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4007, "SRM 4007", "A", -1);
66
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5007, 4007, "Practice 4007", "A", 2 , 0);
66
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5007, 4007, "Practice 4007", "A", 3 , 0);
67
67
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5007, 5007, 'room ', 3);
68
68
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5007, 3005, 2, 1, 450);
69
69
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7013, 5007, 132456, 3005, 100, 150, 1);
@@ -79,14 +79,14 @@ INSERT INTO component(component_id, problem_id, result_type_id, method_name, cla
79
79
80
80
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4008, "SRM 4008", "A", -1);
81
81
82
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5008, 4008, "Practice 4008", "A", 2 , 0);
82
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5008, 4008, "Practice 4008", "A", 3 , 0);
83
83
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5008, 5008, 'room ', 3);
84
84
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5008, 3006, 2, 1, 100);
85
85
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7015, 5008, 132456, 3006, 80, 150, 1);
86
86
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id, submission_number) VALUES(7016, 5008, 132457, 3006, 0, 130, 1, 001);
87
87
INSERT INTO round_segment(round_id, segment_id, start_time, end_time, status) VALUES(5008, 1, '2014-09-20 00:00:00', '2014-09-21 00:00:00', 'P');
88
88
89
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5009, 4008, "Practice 4008", "A", 2 , 0);
89
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5009, 4008, "Practice 4008", "A", 3 , 0);
90
90
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5009, 5009, 'room ', 3);
91
91
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5009, 3006, 2, 1, 100);
92
92
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7017, 5009, 132456, 3006, 80, 150, 1);
@@ -95,7 +95,7 @@ INSERT INTO round_segment(round_id, segment_id, start_time, end_time, status) VA
95
95
96
96
97
97
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4009, "SRM 4009", "A", -1);
98
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5010, 4009, "Practice 4009", "A", 2 , 0);
98
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5010, 4009, "Practice 4009", "A", 3 , 0);
99
99
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5010, 5010, 'room ', 3);
100
100
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5010, 3007, 2, 1, 450);
101
101
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7019, 5010, 132456, 3007, 100, 150, 1);
@@ -108,7 +108,7 @@ INSERT INTO problem(problem_id, name, status_id, problem_type_id, proposed_diffi
108
108
INSERT INTO component(component_id, problem_id, result_type_id, method_name, class_name, component_type_id, status_id) VALUES (3008, 2005, 18, 'method_2', 'problem_class2', 1, 1);
109
109
110
110
INSERT INTO contest (contest_id, name, status, group_id) VALUES (4010, "SRM 4010", "A", -1);
111
- INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5011, 4010, "Practice 4010", "A", 2 , 0);
111
+ INSERT INTO round (round_id, contest_id, name, status, round_type_id, rated_ind) VALUES (5011, 4010, "Practice 4010", "A", 3 , 0);
112
112
INSERT INTO room(room_id, round_id, name, room_type_id) VALUES(5011, 5011, 'room ', 3);
113
113
INSERT INTO round_component(round_id, component_id, difficulty_id, division_id, points) VALUES(5011, 3008, 2, 1, 200);
114
114
INSERT INTO practice_component_state(component_state_id, round_id, coder_id, component_id, points, status_id, language_id) VALUES(7020, 5011, 132456, 3008, 0, 110, 1);
0 commit comments